1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-13 14:53:33 +00:00

no update for menu for snap store either

This commit is contained in:
Kyle Spearrin
2018-03-15 13:00:53 -04:00
parent c9d3452f05
commit 97607cd664

View File

@@ -11,7 +11,7 @@ import {
} from 'electron';
import { Main } from '../main';
import { isMacAppStore, isWindowsStore } from '../scripts/utils';
import { isMacAppStore, isWindowsStore, isSnapStore } from '../scripts/utils';
import { ConstantsService } from 'jslib/services/constants.service';
@@ -588,7 +588,7 @@ export class MenuMain {
{ type: 'separator' },
];
if (!isWindowsStore()) {
if (!isWindowsStore() && !isSnapStore()) {
aboutMenuAdditions.push(updateMenuItem);
}