storage: fix another code path for members

This commit is contained in:
Luna 2021-08-29 00:32:56 -03:00
parent ec5fa255c6
commit 0b20ba1283
1 changed files with 1 additions and 1 deletions

View File

@ -347,7 +347,7 @@ class Storage:
"""Get member information on a guild."""
members_basic = await self.db.fetch(
"""
SELECT user_id, nickname, joined_at,
SELECT user_id, nickname AS nick, joined_at,
deafened AS deaf, muted AS mute
FROM members
WHERE guild_id = $1