diff options
author | AutumnVN <autumnvnchino@gmail.com> | 2023-09-26 06:48:09 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-26 01:48:09 +0200 |
commit | f32d25b641dc89b623ec0930396827bfcf4921b2 (patch) | |
tree | aabb088f96e7b10a55ad5a99f221c8e92f0dc500 /src/plugins/viewIcons/index.tsx | |
parent | 4c7a2ba3406c2ba4ffc7237cdceaa8ebd2a491d3 (diff) | |
download | Vencord-f32d25b641dc89b623ec0930396827bfcf4921b2.tar.gz Vencord-f32d25b641dc89b623ec0930396827bfcf4921b2.tar.bz2 Vencord-f32d25b641dc89b623ec0930396827bfcf4921b2.zip |
viewRaw, viewIcons, permissionsViewer: fix some edge cases (#1745)
Co-authored-by: V <vendicated@riseup.net>
Diffstat (limited to 'src/plugins/viewIcons/index.tsx')
-rw-r--r-- | src/plugins/viewIcons/index.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
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; |