mirror of
https://github.com/mas-cli/mas
synced 2024-11-25 04:50:24 +00:00
🚨 FIx lint warning with new #unavailable
This commit is contained in:
parent
dc4b5f55e2
commit
6cc248b83e
1 changed files with 1 additions and 2 deletions
|
@ -64,11 +64,10 @@ private func downloadWithRetries(
|
|||
/// - Returns: A promise the completes when the download is complete.
|
||||
private func download(_ appID: UInt64, purchase: Bool = false) -> Promise<Void> {
|
||||
var storeAccount: ISStoreAccount?
|
||||
if #available(macOS 12, *) {
|
||||
if #unavailable(macOS 12) {
|
||||
// Monterey obscured the user's account information, but still allows
|
||||
// redownloads without passing it to SSPurchase.
|
||||
// https://github.com/mas-cli/mas/issues/417
|
||||
} else {
|
||||
guard let account = ISStoreAccount.primaryAccount else {
|
||||
return Promise(error: MASError.notSignedIn)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue