summaryrefslogtreecommitdiff
path: root/plugins/marquee.py
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/marquee.py')
-rw-r--r--plugins/marquee.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/marquee.py b/plugins/marquee.py
index 9319a7f6..2fea3ed6 100644
--- a/plugins/marquee.py
+++ b/plugins/marquee.py
@@ -34,6 +34,7 @@ Configuration
"""
+import asyncio
from poezio.plugin import BasePlugin
from poezio import tabs
from poezio import xhtml
@@ -65,7 +66,7 @@ class Plugin(BasePlugin):
def command_marquee(self, args):
tab = self.api.current_tab()
args = xhtml.clean_text(xhtml.convert_simple_to_full_colors(args))
- tab.command_say(args)
+ asyncio.ensure_future(tab.command_say(args))
is_muctab = isinstance(tab, tabs.MucTab)
msg_id = tab.last_sent_message["id"]
jid = tab.jid