Browse Source

move it again

Eric Eastwood 1 year ago
parent
commit
89422ac9ff
1 changed files with 9 additions and 7 deletions
  1. 9 7
      synapse/appservice/scheduler.py

+ 9 - 7
synapse/appservice/scheduler.py

@@ -149,14 +149,16 @@ class ApplicationServiceScheduler:
         ):
             return
 
-        # XXX: Special patch just for Gitter which we should remove after the import,
-        # https://github.com/matrix-org/synapse/pull/14729
-        #
-        # Ignore events that come from our own users. We probably already know about
-        # them and sent them ourself.
-        events = [event for event in events if not self._hs.is_mine_id(event.sender)]
-
         if events:
+            # XXX: Special patch just for Gitter which we should remove after the import,
+            # https://github.com/matrix-org/synapse/pull/14729
+            #
+            # Ignore events that come from our own users. We probably already know about
+            # them and sent them ourself.
+            events = [
+                event for event in events if not self._hs.is_mine_id(event.sender)
+            ]
+
             self.queuer.queued_events.setdefault(appservice.id, []).extend(events)
         if ephemeral:
             self.queuer.queued_ephemeral.setdefault(appservice.id, []).extend(ephemeral)