From f32d25b641dc89b623ec0930396827bfcf4921b2 Mon Sep 17 00:00:00 2001 From: AutumnVN Date: Tue, 26 Sep 2023 06:48:09 +0700 Subject: viewRaw, viewIcons, permissionsViewer: fix some edge cases (#1745) Co-authored-by: V --- src/plugins/viewIcons/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/plugins/viewIcons') diff --git a/src/plugins/viewIcons/index.tsx b/src/plugins/viewIcons/index.tsx index 3bfe902..06a7c0a 100644 --- a/src/plugins/viewIcons/index.tsx +++ b/src/plugins/viewIcons/index.tsx @@ -83,6 +83,7 @@ function openImage(url: string) { } const UserContext: NavContextMenuPatchCallback = (children, { user, guildId }: UserContextProps) => () => { + if (!user) return; const memberAvatar = GuildMemberStore.getMember(guildId!, user.id)?.avatar || null; children.splice(-1, 0, ( @@ -111,7 +112,7 @@ const UserContext: NavContextMenuPatchCallback = (children, { user, guildId }: U }; const GuildContext: NavContextMenuPatchCallback = (children, { guild }: GuildContextProps) => () => { - if(!guild) return; + if (!guild) return; const { id, icon, banner } = guild; if (!banner && !icon) return; -- cgit