main: Remove Discord webhooks if they are not authenticated
This commit is contained in:
parent
48c8893ddf
commit
757976c8f6
@ -206,7 +206,11 @@ class BridgeComponent(ComponentXMPP):
|
||||
wh = None
|
||||
for webhook in await dchannel.webhooks():
|
||||
if webhook.name == "discord-xmpp-bridge":
|
||||
wh = webhook
|
||||
if not webhook.is_authenticated():
|
||||
_logger.info("Webhook for %s has no token. Deleting and recreating" % muc)
|
||||
await webhook.delete(reason="Webhook has no token. Will recreate")
|
||||
else:
|
||||
wh = webhook
|
||||
break
|
||||
if not wh:
|
||||
wh = await dchannel.create_webhook(name="discord-xmpp-bridge",
|
||||
@ -526,7 +530,15 @@ def main():
|
||||
general["port"],
|
||||
general["discord_token"],
|
||||
config)
|
||||
for xep in [ "0030", "0199", "0045", "0084", "0153", "0054", "0060" ]:
|
||||
for xep in [
|
||||
"0030",
|
||||
"0199",
|
||||
"0045",
|
||||
"0084",
|
||||
"0153",
|
||||
"0054",
|
||||
"0060"
|
||||
]:
|
||||
xmpp.register_plugin(f"xep_{xep}")
|
||||
|
||||
logging.basicConfig(stream=sys.stdout, level=verbosity)
|
||||
|
Loading…
Reference in New Issue
Block a user