We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0417952 commit 7726e5cCopy full SHA for 7726e5c
bot/src/ghutils/core/bot.py
@@ -159,7 +159,12 @@ async def fetch_custom_emojis(self):
159
160
async def sync_custom_emojis(self):
161
logger.info("Syncing/uploading custom emojis")
162
+
163
self._custom_emoji.clear()
164
165
+ for emoji in await self.fetch_application_emojis():
166
+ await emoji.delete()
167
168
for custom_emoji in CustomEmoji:
169
self._custom_emoji[custom_emoji] = await self.create_application_emoji(
170
name=custom_emoji.name,
0 commit comments