Skip to content

Commit

Permalink
Merge pull request #659 from endlessm/no-store-buttons-in-app
Browse files Browse the repository at this point in the history
footer: Correctly hide store buttons in apps
  • Loading branch information
manuq authored Jun 22, 2023
2 parents b0f1e55 + 00e431e commit 9c64d2a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
return plugin_data.windowsApplicationId;
},
showStoreButtons() {
return plugin_data.androidApplicationId != '' && plugin_data.windowsApplicationId != '';
return !!plugin_data.androidApplicationId && !!plugin_data.windowsApplicationId;
},
},
$trs: {
Expand Down

0 comments on commit 9c64d2a

Please sign in to comment.