From 9398fcf6fde1ecda7f5471d32533a4c80048dbff Mon Sep 17 00:00:00 2001 From: Collecting Date: Fri, 26 Dec 2025 02:35:46 +0000 Subject: [PATCH] Swap Nightly Repo for testing Change back to const std::string NIGHTLY_UPDATE_URL = "https://api.github.com/repos/Zephyron-Dev/Citron-CI/releases"; after change Signed-off-by: Collecting --- src/citron/updater/updater_service.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/citron/updater/updater_service.cpp b/src/citron/updater/updater_service.cpp index e3add434f..2d8cc3b81 100644 --- a/src/citron/updater/updater_service.cpp +++ b/src/citron/updater/updater_service.cpp @@ -41,7 +41,7 @@ namespace Updater { const std::string STABLE_UPDATE_URL = "https://git.citron-emu.org/api/v1/repos/Citron/Emulator/releases"; -const std::string NIGHTLY_UPDATE_URL = "https://api.github.com/repos/Zephyron-Dev/Citron-CI/releases"; +const std::string NIGHTLY_UPDATE_URL = "https://api.github.com/repos/CollectingW/Citron-CI/releases"; std::string ExtractCommitHash(const std::string& version_string) { std::regex re("([0-9a-fA-F]{7,40})");