Skip to content
This repository has been archived by the owner on May 18, 2022. It is now read-only.

Fix MAS menu bar browser is not attached to menu bar #799

Merged
merged 1 commit into from
Feb 17, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion main-src/libs/preferences.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ const initCachedPreferences = () => {
// this feature used to be free on MAS
// so we need this code to deactivate it for free users
// note: this feature is always free witH WebCatalog
if (isMas() && !appJson.registered && !cachedPreferences.iapPurchased) {
if (isMas() && !isMenubarBrowser() && !appJson.registered && !cachedPreferences.iapPurchased) {
cachedPreferences.attachToMenubar = false;
}

Expand Down