mod_pubsub: Fix boolean value in form
authorKim Alvefur <zash@zash.se>
Sun, 19 Aug 2018 07:41:26 +0200
changeset 9214 a476d80761cd
parent 9213 68e96dd437bb
child 9215 127af0795e93
mod_pubsub: Fix boolean value in form
plugins/mod_pubsub/pubsub.lib.lua
--- a/plugins/mod_pubsub/pubsub.lib.lua	Sun Aug 19 07:39:49 2018 +0200
+++ b/plugins/mod_pubsub/pubsub.lib.lua	Sun Aug 19 07:41:26 2018 +0200
@@ -100,7 +100,7 @@
 	};
 	{
 		type = "boolean";
-		value = "true";
+		value = true;
 		label = "Whether to deliver event notifications";
 		name = "pubsub#deliver_notifications";
 	};