Skip to content

Commit

Permalink
Merge pull request #496 from WangEdward/main
Browse files Browse the repository at this point in the history
🔧 Check for mac updates only
  • Loading branch information
phatblat committed Feb 17, 2024
2 parents ec503a1 + 41a20f1 commit 85a31ed
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Sources/MasKit/Controllers/StoreSearch.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 85a31ed

Please sign in to comment.