diff --git a/backend/app/service/app_utils.go b/backend/app/service/app_utils.go index 6bdcef2d7..13382b555 100644 --- a/backend/app/service/app_utils.go +++ b/backend/app/service/app_utils.go @@ -570,6 +570,9 @@ func getAppFromRepo(downloadPath, version string) error { func handleInstalled(appInstallList []model.AppInstall, updated bool) ([]response.AppInstalledDTO, error) { var res []response.AppInstalledDTO for _, installed := range appInstallList { + if installed.App.Type == "php" { + continue + } installDTO := response.AppInstalledDTO{ AppInstall: installed, }