@@ -298,13 +298,13 @@ async def hastebin(self, ctx):
298
298
logs = f .read ().strip ()
299
299
300
300
try :
301
- async with self .bot .session .post ('https://hastebin.com /documents' ,
301
+ async with self .bot .session .post ('https://hasteb.in /documents' ,
302
302
data = logs ) as resp :
303
303
key = (await resp .json ())["key" ]
304
304
embed = Embed (
305
305
title = 'Debug Logs' ,
306
306
color = self .bot .main_color ,
307
- description = f'https://hastebin.com /' + key
307
+ description = f'https://hasteb.in /' + key
308
308
)
309
309
except (JSONDecodeError , ClientResponseError , IndexError ):
310
310
embed = Embed (
@@ -410,7 +410,7 @@ async def update(self, ctx):
410
410
411
411
@commands .command (aliases = ['presence' ])
412
412
@checks .has_permissions (administrator = True )
413
- async def activity (self , ctx , activity_type : str , * , message : str = '' ):
413
+ async def activity (self , ctx , activity_type : str . lower , * , message : str = '' ):
414
414
"""
415
415
Set a custom activity for the bot.
416
416
@@ -463,7 +463,7 @@ async def activity(self, ctx, activity_type: str, *, message: str = ''):
463
463
464
464
@commands .command ()
465
465
@checks .has_permissions (administrator = True )
466
- async def status (self , ctx , * , status_type : str ):
466
+ async def status (self , ctx , * , status_type : str . lower ):
467
467
"""
468
468
Set a custom status for the bot.
469
469
0 commit comments