Skip to content
Snippets Groups Projects
Commit 24d894e2 authored by Erik Johnston's avatar Erik Johnston
Browse files

Fix thinko in unhandled user spam

parent ccfcef6b
No related branches found
No related tags found
No related merge requests found
......@@ -187,9 +187,9 @@ class UserDirectoyHandler(object):
if is_public:
yield self.store.add_users_to_public_room(
room_id,
user_ids=unhandled_users - self.initially_handled_users_in_public
user_ids=user_ids - self.initially_handled_users_in_public
)
self.initially_handled_users_in_public != unhandled_users
self.initially_handled_users_in_public != user_ids
# We now go and figure out the new users who share rooms with user entries
# We sleep aggressively here as otherwise it can starve resources.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment