aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGravatar jesopo2020-01-22 11:21:41 +0000
committerGravatar jesopo2020-01-22 11:21:41 +0000
commit11bf1d3f7b5f3246273a1d5209cecb6a233e343e (patch)
tree1e4634998a2244296f3b2e9f16b17757534205d6 /modules
parentuse ISUPPORT QUIET when available (diff)
signature
default to quiet-method being unsupported
Diffstat (limited to 'modules')
-rw-r--r--modules/channel_op.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/channel_op.py b/modules/channel_op.py
index e2299467..07b02257 100644
--- a/modules/channel_op.py
+++ b/modules/channel_op.py
@@ -186,7 +186,7 @@ class Module(ModuleManager.BaseModule):
if server.quiet:
return server.quiet
- quiet_method = server.get_setting("quiet-method", "qmode").lower()
+ quiet_method = server.get_setting("quiet-method", "none").lower()
if quiet_method in QUIET_METHODS:
return QUIET_METHODS[quiet_method]