Skip to content

Commit

Permalink
Merge pull request #1343 from NobodyNada/master
Browse files Browse the repository at this point in the history
Implement fixes for quartata
  • Loading branch information
ArtOfCode- committed Dec 6, 2017
2 parents 156739a + 823e20c commit 6d504a4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion chatcommunicate.py
Expand Up @@ -257,7 +257,7 @@ def tell_rooms(msg, has, hasnt, notify_site="", report_data=()):
if "delay" in _room_roles and room_id in _room_roles["delay"]: if "delay" in _room_roles and room_id in _room_roles["delay"]:
threading.Thread(name="delayed post", threading.Thread(name="delayed post",
target=DeletionWatcher.post_message_if_not_deleted, target=DeletionWatcher.post_message_if_not_deleted,
args=(report_data[0], msg, room)) args=(report_data[0], msg, room)).start()
continue continue


_msg_queue.put((room, msg)) _msg_queue.put((room, msg))
Expand Down
6 changes: 3 additions & 3 deletions metasmoke.py
Expand Up @@ -315,13 +315,13 @@ def update_code_privileged_users_list():
GlobalVars.code_privileged_users = set() GlobalVars.code_privileged_users = set()


for id in response["stackexchange_chat_ids"]: for id in response["stackexchange_chat_ids"]:
set.add(("stackexchange.com", id)) GlobalVars.code_privileged_users.add(("stackexchange.com", id))


for id in response["meta_stackexchange_chat_ids"]: for id in response["meta_stackexchange_chat_ids"]:
set.add(("meta.stackexchange.com", id)) GlobalVars.code_privileged_users.add(("meta.stackexchange.com", id))


for id in response["stackoverflow_chat_ids"]: for id in response["stackoverflow_chat_ids"]:
set.add(("stackoverflow.com", id)) GlobalVars.code_privileged_users.add(("stackoverflow.com", id))


@staticmethod @staticmethod
def determine_if_autoflagged(post_url): def determine_if_autoflagged(post_url):
Expand Down

0 comments on commit 6d504a4

Please sign in to comment.