From 97607cd664db5eb573c9c75ed42a3f5ef441346a Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 15 Mar 2018 13:00:53 -0400 Subject: [PATCH] no update for menu for snap store either --- src/main/menu.main.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/menu.main.ts b/src/main/menu.main.ts index ed3aba3016..347693b5f0 100644 --- a/src/main/menu.main.ts +++ b/src/main/menu.main.ts @@ -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); }