From 6cf654b5a1f870adbf71a9711a27795add238c1f Mon Sep 17 00:00:00 2001 From: zhengkunwang223 Date: Thu, 22 Dec 2022 10:39:26 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=96=87=E4=BB=B6=E4=B8=BB=E7=9B=AE?= =?UTF-8?q?=E5=BD=95=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/app/service/app_install.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/service/app_install.go b/backend/app/service/app_install.go index 7bbfd57fc..b10e0beef 100644 --- a/backend/app/service/app_install.go +++ b/backend/app/service/app_install.go @@ -74,7 +74,7 @@ func (a AppInstallService) CheckExist(key string) (*response.AppInstalledCheck, res.Status = appInstall.Status res.AppInstallID = appInstall.ID res.IsExist = true - res.InstallPath = path.Join(constant.AppInstallDir, appInstall.Name) + res.InstallPath = path.Join(constant.AppInstallDir, app.Key, appInstall.Name) if len(appInstall.Backups) > 0 { res.LastBackupAt = appInstall.Backups[0].CreatedAt.Format("2006-01-02 15:04:05") }