Remove unused ignore_event_list.

This commit is contained in:
poljar (Damir Jelić) 2018-02-25 18:12:23 +01:00
parent bf0bffc879
commit 1ec7c8f190
2 changed files with 0 additions and 5 deletions

View file

@ -106,10 +106,6 @@ class MatrixSendEvent(MatrixEvent):
date = int(time.time())
# This message will be part of the next sync, we already printed it out
# so ignore it in the sync.
self.server.ignore_event_list.append(event_id)
tag = ("notify_none,no_highlight,self_msg,log1,nick_{a},"
"prefix_nick_{color},matrix_id_{event_id},"
"matrix_message").format(

View file

@ -87,7 +87,6 @@ class MatrixServer:
self.receive_queue = deque() # type: Deque[MatrixMessage]
self.message_queue = deque() # type: Deque[MatrixMessage]
self.ignore_event_list = [] # type: List[str]
self._create_options(config_file)
# yapf: enable