From b4d83975ae4a31a4413dfe59bb5614cc6bc766f3 Mon Sep 17 00:00:00 2001
From: syuilo <syuilotan@yahoo.co.jp>
Date: Sat, 1 Dec 2018 07:59:15 +0900
Subject: [PATCH] Disable update notification

---
 src/client/app/common/scripts/check-for-update.ts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/client/app/common/scripts/check-for-update.ts b/src/client/app/common/scripts/check-for-update.ts
index 7fe9d8d50..d0e22ca32 100644
--- a/src/client/app/common/scripts/check-for-update.ts
+++ b/src/client/app/common/scripts/check-for-update.ts
@@ -21,12 +21,12 @@ export default async function($root: any, force = false, silent = false) {
 			console.error(e);
 		}
 
-		if (!silent) {
+		/*if (!silent) {
 			$root.alert({
 				title: $root.$t('@.update-available-title'),
 				text: $root.$t('@.update-available', { newer, current })
 			});
-		}
+		}*/
 
 		return newer;
 	} else {