diff --git a/src/NadekoBot/Modules/Searches/SearchesService.cs b/src/NadekoBot/Modules/Searches/SearchesService.cs index e8a1201a8..eedea43a1 100644 --- a/src/NadekoBot/Modules/Searches/SearchesService.cs +++ b/src/NadekoBot/Modules/Searches/SearchesService.cs @@ -296,8 +296,8 @@ public class SearchesService : INService public async Task GetChuckNorrisJoke() { using var http = _httpFactory.CreateClient(); - var response = await http.GetStringAsync(new Uri("http://api.icndb.com/jokes/random/")); - return JObject.Parse(response)["value"]["joke"] + " 😆"; + var response = await http.GetStringAsync(new Uri("https://api.chucknorris.io/jokes/random")); + return JObject.Parse(response)["value"] + " 😆"; } public async Task GetMtgCardAsync(string search)