aboutsummaryrefslogtreecommitdiff
path: root/modules/title.py
diff options
context:
space:
mode:
authorGravatar jesopo2019-05-06 17:08:56 +0100
committerGravatar jesopo2019-05-06 17:08:56 +0100
commit0114d35d4c7a3a6640b5ccd1190347998b9dc7c5 (patch)
tree328cf0f8e8dc291239197ae690f74845b3ba88e0 /modules/title.py
parentSupport only saving birthday day and month (diff)
signature
Add a mechanism to ignore specific commands for a whole network
Diffstat (limited to 'modules/title.py')
-rw-r--r--modules/title.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/title.py b/modules/title.py
index cfb2e6c0..c84b8637 100644
--- a/modules/title.py
+++ b/modules/title.py
@@ -51,7 +51,7 @@ class Module(ModuleManager.BaseModule):
if match and event["channel"].get_setting("auto-title", False):
is_ignored_f = short_url = self.exports.get_one("is-ignored",
lambda _1, _2: False)
- if is_ignored_f(event["user"], "title"):
+ if is_ignored_f(event["server"], event["user"], "title"):
return
url = match.group(0)