From 4dc368d8df0a55fddf6850feaaab4944b464f0a4 Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Sun, 22 Dec 2024 19:32:25 -0500 Subject: [PATCH] WiiUtils: Remove HTTPS workaround for Android --- Source/Core/Core/WiiUtils.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Source/Core/Core/WiiUtils.cpp b/Source/Core/Core/WiiUtils.cpp index 2d5a8e4ac3..86e4ba75a1 100644 --- a/Source/Core/Core/WiiUtils.cpp +++ b/Source/Core/Core/WiiUtils.cpp @@ -467,12 +467,7 @@ OnlineSystemUpdater::Response OnlineSystemUpdater::GetSystemTitles() // but the backing data CDN is still active and accessible from other URLs. We take advantage // of this by hosting our own NetUpdateSOAP endpoint which serves the correct list of titles to // install along with URLs for the Wii U CDN. -#ifdef ANDROID - // HTTPS is unsupported on Android (https://bugs.dolphin-emu.org/issues/11772). - base_url = "http://fakenus.dolphin-emu.org"; -#else base_url = "https://fakenus.dolphin-emu.org"; -#endif } const std::string url = fmt::format("{}/nus/services/NetUpdateSOAP", base_url);