From f472d0e42dd6ad5aadb4d2a8a29b8d135a09baa7 Mon Sep 17 00:00:00 2001 From: Zach Goodson Date: Sun, 29 Dec 2024 14:32:23 -0600 Subject: [PATCH] #232 Use HTTP in /random quote --- commands/random-group/randomCommands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/random-group/randomCommands.cs b/commands/random-group/randomCommands.cs index 742677c..ff64100 100644 --- a/commands/random-group/randomCommands.cs +++ b/commands/random-group/randomCommands.cs @@ -153,7 +153,7 @@ public async Task Quote([Summary("prompt", "use /quote-prompts to see all valid try { - content = await GetFromAPI($"https://api.quotable.io/quotes/random?tags={prompt}", AcceptTypes.application_json); + content = await GetFromAPI($"http://api.quotable.io/quotes/random?tags={prompt}", AcceptTypes.application_json); } catch (HttpRequestException ex) {