From affd8c08ef53db13cce8d8100e49b447bfef9c93 Mon Sep 17 00:00:00 2001 From: Nova Date: Fri, 18 Jul 2025 09:11:23 +0330 Subject: [PATCH] fix updater URL --- src/ui/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/mainwindow.cpp b/src/ui/mainwindow.cpp index 7042079..a2c8162 100644 --- a/src/ui/mainwindow.cpp +++ b/src/ui/mainwindow.cpp @@ -2313,7 +2313,7 @@ void MainWindow::CheckUpdate() { return; } - auto resp = NetworkRequestHelper::HttpGet("https://api.github.com/repos/Mahdi-zarei/nekoray/releases"); + auto resp = NetworkRequestHelper::HttpGet("https://api.github.com/repos/throneproj/Throne/releases"); if (!resp.error.isEmpty()) { runOnUiThread([=] { MessageBoxWarning(QObject::tr("Update"), QObject::tr("Requesting update error: %1").arg(resp.error + "\n" + resp.data));