mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 03:23:08 +00:00
🔧 Check for mac update only
Idea from https://github.com/mangerlahn/Latest . Thank you!
This commit is contained in:
parent
4c044d8b64
commit
9116ec1798
1 changed files with 4 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue