From 57256626920e53c3b2bed891a6c32ba1e0194453 Mon Sep 17 00:00:00 2001 From: Someone Date: Mon, 10 Jan 2022 00:53:39 +0100 Subject: [PATCH] modules/TACommandSyncFSInf.py --- modules/TACommandSyncFSInf.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/TACommandSyncFSInf.py b/modules/TACommandSyncFSInf.py index c7c9715..ea5e5b5 100644 --- a/modules/TACommandSyncFSInf.py +++ b/modules/TACommandSyncFSInf.py @@ -25,8 +25,10 @@ class TACommandSyncFSInf(AbstractCommand): def on_POST(self, request, data): + raise Exception ("borked. low priority todo.") self._require_bot_admin(data) # will throw an exception if not. (Dont try-except: Its handled up the stack.) + fsinf_intern_userids = set([u["user_id"] for u in self.bot.api.get_channel_members(self.fsinf_intern_channelid)]) fsinf_altnasen_userids = set([u["user_id"] for u in self.bot.api.get_channel_members(self.ignore_accounts_channelid)]) all_users = {u["id"]:u["username"] for u in self.bot.api.get_users()} -- 2.43.0