Skip to content

Commit

Permalink
[Birthday] fix guild id as str
Browse files Browse the repository at this point in the history
  • Loading branch information
Vexed01 committed Jan 3, 2025
1 parent f8262c9 commit 8014592
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion birthday/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,9 @@ async def zemigrate(self, ctx: commands.Context):
"month": dt.month,
"day": dt.day,
}
await self.config.member_from_ids(guild_id, user_id).birthday.set(new_data)
await self.config.member_from_ids(int(guild_id), user_id).birthday.set(
new_data
)

await ctx.send(
"All set. You can now configure the messages and time to send with other commands"
Expand Down

0 comments on commit 8014592

Please sign in to comment.