From 0c93b141ac7a34c94f8cf49191a22ea38f2755b1 Mon Sep 17 00:00:00 2001 From: RintaroYamada Date: Wed, 11 Oct 2023 10:20:34 +0900 Subject: [PATCH] Fix upgrade issue --- Sources/MasKit/Controllers/StoreSearch.swift | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Sources/MasKit/Controllers/StoreSearch.swift b/Sources/MasKit/Controllers/StoreSearch.swift index 4fcb5a217..d96c2dfcf 100644 --- a/Sources/MasKit/Controllers/StoreSearch.swift +++ b/Sources/MasKit/Controllers/StoreSearch.swift @@ -48,7 +48,10 @@ extension StoreSearch { return nil } - components.queryItems = [URLQueryItem(name: "id", value: "\(appId)")] + components.queryItems = [ + URLQueryItem(name: "id", value: "\(appId)"), + URLQueryItem(name: "entity", value: "desktopSoftware"), + ] if let country = country { components.queryItems!.append(country)