diff options
Diffstat (limited to '')
| -rw-r--r-- | bot/cogs/reminders.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/cogs/reminders.py b/bot/cogs/reminders.py index 78f1cd73b..b86fecd5c 100644 --- a/bot/cogs/reminders.py +++ b/bot/cogs/reminders.py @@ -277,7 +277,7 @@ class Reminders(Scheduler):          """          # Send the request to update the reminder in the database -        reminder = await self.bot.http_session.patch( +        reminder = await self.bot.api_client.patch(              'bot/reminders/' + str(id_),              json={'expiration': expiration.isoformat()}          ) @@ -296,7 +296,7 @@ class Reminders(Scheduler):          """          # Send the request to update the reminder in the database -        reminder = await self.bot.http_session.patch( +        reminder = await self.bot.api_client.patch(              'bot/reminders/' + str(id_),              json={'content': content}          )  |