From 3b79e5fcd0eb43d3626e0c6eecb9d7577a164cf9 Mon Sep 17 00:00:00 2001 From: Duke Date: Sat, 20 Jan 2024 10:29:33 -0500 Subject: [PATCH] Fix the URL for checking releases The URL was definitely wrong and the new URL should be correct but still doesn't seem to work. According to https://git.hush.is/api/swagger#/repository/repoListReleases it should be the correct URL. --- src/controller.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/controller.cpp b/src/controller.cpp index 6908fb4..c597158 100644 --- a/src/controller.cpp +++ b/src/controller.cpp @@ -1566,10 +1566,10 @@ void Controller::checkForUpdate(bool silent) if (!zrpc->haveConnection()) return noConnection(); - QUrl cmcURL("https://git.hush.is/repos/MyHush/SilentDragonLite/releases"); + QUrl giteaURL("https://git.hush.is/repos/hush/SilentDragonLite/releases"); QNetworkRequest req; - req.setUrl(cmcURL); + req.setUrl(giteaURL); QNetworkAccessManager *manager = new QNetworkAccessManager(this->main); QNetworkReply *reply = manager->get(req);