From d71ab9deb49c1c6d3326d53d453ef780532c6293 Mon Sep 17 00:00:00 2001 From: Sugden Date: Mon, 23 Dec 2019 03:48:14 +0000 Subject: [PATCH] oops --- src/stores/GuildStore.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/GuildStore.js b/src/stores/GuildStore.js index 8e86b4d00..d246e3d08 100644 --- a/src/stores/GuildStore.js +++ b/src/stores/GuildStore.js @@ -60,7 +60,7 @@ class GuildStore extends DataStore { guild instanceof GuildMember || guild instanceof GuildEmoji || guild instanceof Role || - guild instanceof Invite && guild.guild) return super.resolveID(guild.guild.id); + (guild instanceof Invite && guild.guild)) return super.resolveID(guild.guild.id); return super.resolveID(guild); }