From 4788a678a3c3386cca1ab78aad4457f7e9227e43 Mon Sep 17 00:00:00 2001 From: Haruka Date: Sat, 25 Jan 2025 04:36:30 +0200 Subject: [PATCH] chore: add back the explicit return --- src/plugins/emoteCloner/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/emoteCloner/index.tsx b/src/plugins/emoteCloner/index.tsx index 42aa377b3..f8b7f37f1 100644 --- a/src/plugins/emoteCloner/index.tsx +++ b/src/plugins/emoteCloner/index.tsx @@ -75,6 +75,7 @@ async function fetchSticker(id: string) { return body as Sticker; } catch (err) { + return null; } }