From 3c6d7f2ff4da60a67d0d3be9c02692aad1a47c32 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Tue, 8 Aug 2023 16:57:48 -0400 Subject: [PATCH] troubleshooting: making fetch_twemoji_url fail if it doesn't get 200 --- info/info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/info/info.py b/info/info.py index 79f43da..72e6f73 100644 --- a/info/info.py +++ b/info/info.py @@ -505,7 +505,7 @@ class Info(commands.Cog): if response.status == 200: return emoji_url else: - return None + raise @commands.command() @commands.guild_only()