Merge pull request #496 from WangEdward/main

🔧 Check for mac updates only
This commit is contained in:
Ben Chatelain 2024-02-17 11:04:49 -07:00 committed by GitHub
commit 85a31ed5ba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 {
components.queryItems!.append(country)