staging_1.2.6 #467

Merged
edraft merged 16 commits from staging_1.2.6 into staging 2024-01-26 12:18:06 +01:00
Showing only changes of commit 8318dfe988 - Show all commits

View File

@ -178,7 +178,7 @@ class User(TableABC):
def profile_picture_url(self, bot: DiscordBotServiceABC) -> str:
guild = bot.get_guild(self.server.discord_id)
user = guild.get_member(self._discord_id)
return None if user is None else user.avatar.url
return None if user is None or user.avatar is None else user.avatar.url
@staticmethod
def get_select_all_string() -> str: