Check user update username
Deploy prod on push / pre-build (push) Successful in 2s Details
Deploy staging on push / pre-build (push) Successful in 1s Details
Deploy prod on push / build-bot (push) Successful in 3m12s Details
Deploy prod on push / build-web (push) Successful in 1m53s Details
Deploy staging on push / build-bot (push) Successful in 2m1s Details
Deploy prod on push / deploy (push) Successful in 23s Details
Deploy staging on push / build-web (push) Successful in 2m1s Details
Deploy staging on push / deploy (push) Successful in 22s Details

This commit is contained in:
Sven Heidemann 2024-02-03 19:21:13 +01:00
parent df316fd53b
commit 3c21b68b0c
1 changed files with 1 additions and 1 deletions

View File

@ -12,5 +12,5 @@ class ShortRoleNameOnMemberUpdateEvent(OnMemberUpdateABC):
@EventChecks.check_is_ready
async def on_member_update(self, before: discord.member.Member, after: discord.member.Member):
if before.roles != after.roles or before.name != after.name:
if before.roles != after.roles or before.name != after.name or before.display_name != after.display_name:
await self._service.check_short_role_names(after)