Skip to content

Commit

Permalink
Fixing activity notice relevancy issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikey committed Dec 31, 2023
1 parent 3fdb4b5 commit e7bcf8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cogs/ActivityNotices.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ async def send_activity_request(self, guild: discord.Guild, staff_channel: disco
"user_id": author.id,
"accepted": True,
"denied": False,
"expired": True,
"type": request_type.upper()
})]

Expand Down Expand Up @@ -156,7 +157,6 @@ async def core_command_admin(self, ctx: commands.Context, request_type_object: s
"accepted": True,
"expired": True,
"denied": False,
"voided": False,
"type": request_type_object.upper()
})]

Expand Down Expand Up @@ -483,7 +483,7 @@ async def core_command_active(self, ctx: commands.Context, request_type_object:
"guild_id": ctx.guild.id,
"accepted": True,
"denied": False,
"voided": False,
"expired": False,
"type": request_upper
}):
item['started_at'] = int(item['_id'].split('_')[2])
Expand Down

0 comments on commit e7bcf8e

Please sign in to comment.