diff options
| author | 2019-06-21 18:22:36 +0100 | |
|---|---|---|
| committer | 2019-06-21 18:22:36 +0100 | |
| commit | 81ca751d964411093bce8b13a149aaea60458bf3 (patch) | |
| tree | 1ecde7b736888cf85b3aa506bb6f08e6cfb3b786 /modules/ircv3_labeled_responses.py | |
| parent | Make echo-message depend on labeled-responses (diff) | |
| signature | ||
set echo-message response ID to the ID of the original message
Diffstat (limited to 'modules/ircv3_labeled_responses.py')
| -rw-r--r-- | modules/ircv3_labeled_responses.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/ircv3_labeled_responses.py b/modules/ircv3_labeled_responses.py index 1fde7b4a..dc838c93 100644 --- a/modules/ircv3_labeled_responses.py +++ b/modules/ircv3_labeled_responses.py @@ -56,7 +56,8 @@ class Module(ModuleManager.BaseModule): return cached = server._label_cache.pop(label) - cached.events.on("labeled-response").call(lines=lines) + cached.events.on("labeled-response").call(line=cached.line, + responses=lines) for label, other_cached in server._label_cache.items(): other_cached.labels_since += 1 |
