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 0fc22dc commit a195016Copy full SHA for a195016
cogs/utility.py
@@ -298,13 +298,13 @@ async def hastebin(self, ctx):
298
logs = f.read().strip()
299
300
try:
301
- async with self.bot.session.post('https://hastebin.com/documents',
+ async with self.bot.session.post('https://hasteb.in/documents',
302
data=logs) as resp:
303
key = (await resp.json())["key"]
304
embed = Embed(
305
title='Debug Logs',
306
color=self.bot.main_color,
307
- description=f'https://hastebin.com/' + key
+ description=f'https://hasteb.in/' + key
308
)
309
except (JSONDecodeError, ClientResponseError, IndexError):
310
0 commit comments