Skip to content

Commit a195016

Browse files
authored
Change to using hasteb.in
1 parent 0fc22dc commit a195016

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cogs/utility.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -298,13 +298,13 @@ async def hastebin(self, ctx):
298298
logs = f.read().strip()
299299

300300
try:
301-
async with self.bot.session.post('https://hastebin.com/documents',
301+
async with self.bot.session.post('https://hasteb.in/documents',
302302
data=logs) as resp:
303303
key = (await resp.json())["key"]
304304
embed = Embed(
305305
title='Debug Logs',
306306
color=self.bot.main_color,
307-
description=f'https://hastebin.com/' + key
307+
description=f'https://hasteb.in/' + key
308308
)
309309
except (JSONDecodeError, ClientResponseError, IndexError):
310310
embed = Embed(

0 commit comments

Comments
 (0)