Skip to content

Commit

Permalink
new db keys + bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
greeeen-dev committed Jul 13, 2024
1 parent f4b5ac6 commit 0c07848
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cogs/sysmgr.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def __init__(self, *args, **kwargs):
'avatars': {}, 'experiments': {}, 'experiments_info': {}, 'colors': {}, 'external_bridge': [],
'modlogs': {}, 'spybot': [], 'trusted': [], 'report_threads': {}, 'fullbanned': [], 'exp': {},
'squads': {}, 'squads_joined': {}, 'squads_optout': {}, 'appealban': [], 'roomemojis': {},
'languages': {}})
'languages': {}, 'settings': {}})
self.threads = []

# Load data
Expand Down Expand Up @@ -1256,7 +1256,7 @@ async def install(self, ctx, url):
embed.description = 'The repository URL or the plugin.json file is invalid.'
embed.colour = self.bot.colors.error
await msg.edit(embed=embed)
raise
return
embed.title = f'{self.bot.ui_emojis.install} Install `{plugin_id}`?'
embed.description = f'Name: `{name}`\nVersion: `{version}`\n\n{desc}'
embed.colour = 0xffcc00
Expand Down

0 comments on commit 0c07848

Please sign in to comment.