Skip to content

Commit

Permalink
fix: macOS store verification not working
Browse files Browse the repository at this point in the history
  • Loading branch information
Losses committed Dec 4, 2024
1 parent 99e71ad commit 00911c0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions native/hub/src/license.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,10 @@ pub async fn check_store_license() -> Result<Option<(String, bool, bool)>, &'sta
if bundle_id == "ci.not.rune.appstore" {
is_active = true;
is_trial = false;
Ok(Some((bundle_id, is_active, is_trial)))
} else {
return None
}

Ok(Some((bundle_id, is_active, is_trial)))
}

#[cfg(all(not(target_os = "macos"), not(target_os = "windows")))]
Expand Down

0 comments on commit 00911c0

Please sign in to comment.