Skip to content

Commit

Permalink
[p]userinfo: Handle target w/ 'None' Member.joined_at (#2426)
Browse files Browse the repository at this point in the history
  • Loading branch information
Twentysix26 committed Feb 7, 2019
1 parent 8f8c52d commit 99ad01a
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions redbot/cogs/mod/mod.py
Original file line number Diff line number Diff line change
Expand Up @@ -1369,10 +1369,10 @@ async def __global_check(self, ctx):
@commands.bot_has_permissions(embed_links=True)
async def userinfo(self, ctx, *, user: discord.Member = None):
"""Show information about a user.
This includes fields for status, discord join date, server
join date, voice state and previous names/nicknames.
If the user has no roles, previous names or previous nicknames,
these fields will be omitted.
"""
Expand All @@ -1391,8 +1391,12 @@ async def userinfo(self, ctx, *, user: discord.Member = None):

joined_at = user.joined_at if not is_special else special_date
since_created = (ctx.message.created_at - user.created_at).days
since_joined = (ctx.message.created_at - joined_at).days
user_joined = joined_at.strftime("%d %b %Y %H:%M")
if joined_at is not None:
since_joined = (ctx.message.created_at - joined_at).days
user_joined = joined_at.strftime("%d %b %Y %H:%M")
else:
since_joined = "?"
user_joined = "Unknown"
user_created = user.created_at.strftime("%d %b %Y %H:%M")
voice_state = user.voice
member_number = (
Expand Down

0 comments on commit 99ad01a

Please sign in to comment.