From bf6a6893b359d34cc1f6c0eb738615dad7f4b438 Mon Sep 17 00:00:00 2001
From: shenmo <jifengshenmo@outlook.com>
Date: Sun, 20 Oct 2024 16:34:45 +0800
Subject: [PATCH] fix: link update

---
 spark-webapp-runtime/application.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/spark-webapp-runtime/application.cpp b/spark-webapp-runtime/application.cpp
index bf2e6ed..aa503ee 100644
--- a/spark-webapp-runtime/application.cpp
+++ b/spark-webapp-runtime/application.cpp
@@ -29,7 +29,7 @@ Application::Application(int &argc, char **argv)
     setWindowIcon(QIcon(":/images/spark-webapp-runtime.svg"));
 
     setProductIcon(QIcon(":/images/spark-webapp-runtime.svg"));
-    setProductName(websiteLinkTemplate.arg("https://gitee.com/deepin-community-store/spark-web-app-runtime", DEFAULT_TITLE));
+    setProductName(websiteLinkTemplate.arg("https://gitee.com/spark-store-project/spark-web-app-runtime", DEFAULT_TITLE));
     setApplicationDescription(QObject::tr("Presented By Spark developers # HadesStudio"));
     setApplicationLicense(websiteLinkTemplate.arg("https://gitee.com/spark-store-project/spark-web-app-runtime/blob/master/LICENSE", "GPLv3"));
 }
@@ -65,7 +65,7 @@ void Application::handleAboutAction()
         // WebsiteName
         dialog->setWebsiteName("Spark Project");
         // WebsiteLink
-        dialog->setWebsiteLink("https://gitee.com/deepin-community-store/");
+        dialog->setWebsiteLink("https://gitee.com/spark-store-project/");
     }
 }