From b1505320a96c7ff03ca85175bafdaa87572ec3de Mon Sep 17 00:00:00 2001 From: Raiden Sakura Date: Sun, 23 Jun 2024 18:59:01 +0800 Subject: [PATCH] Update registry url --- cogs/plugins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/plugins.py b/cogs/plugins.py index bcf3b390cc..8acf5a1acd 100644 --- a/cogs/plugins.py +++ b/cogs/plugins.py @@ -130,7 +130,7 @@ async def cog_load(self): logger.info("Plugins not loaded since ENABLE_PLUGINS=false.") async def populate_registry(self): - url = "https://raw.githubusercontent.com/raidensakura/modmail/stable/plugins/registry.json" + url = "https://raw.githubusercontent.com/raidensakura/modmail/stable/REGISTRY.json" try: async with self.bot.session.get(url) as resp: self.registry = json.loads(await resp.text())