Skip to content
This repository has been archived by the owner on Sep 16, 2021. It is now read-only.

Commit

Permalink
fix syncroom duplicates
Browse files Browse the repository at this point in the history
  • Loading branch information
das7pad committed Jul 17, 2017
1 parent 62069bb commit 3767aad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hangupsbot/plugins/syncrooms.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def __init__(self):

def _initialise(bot):
plugins.register_handler(_broadcast, type="sending")
plugins.register_handler(_repeat, type="allmessages")
plugins.register_handler(_repeat, type="message")

#_register_chatbridge_behaviour('userlist', _syncout_users)

Expand Down
2 changes: 1 addition & 1 deletion hangupsbot/webbridge/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ async def _register_handlers(self):
await plugins.tracking.start({'module.path': self.uid})
self._closed = False
plugins.register_handler(self._broadcast, "sending")
plugins.register_handler(self._repeat, "allmessages")
plugins.register_handler(self._repeat, "message")
plugins.tracking.end()

def close(self):
Expand Down

0 comments on commit 3767aad

Please sign in to comment.