From 29c27bbfd927fd02a2fbc285bba2ef0c6b0a981a Mon Sep 17 00:00:00 2001 From: MengYX Date: Tue, 7 Apr 2020 18:53:38 +0800 Subject: [PATCH] Limit Update Tips --- src/App.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/App.vue b/src/App.vue index b76490c..eff18f4 100644 --- a/src/App.vue +++ b/src/App.vue @@ -92,12 +92,13 @@ try { const resp = await fetch("https://stats.ixarea.com/collect/music/app-version", { method: "POST", headers: {"Content-Type": "application/json"}, - body: JSON.stringify({Version: this.version}) + body: JSON.stringify({"Version": this.version}) }); updateInfo = await resp.json(); } catch (e) { } - if (!!updateInfo && !!updateInfo.Found) { + if ((!!updateInfo && process.env.NODE_ENV === 'production') && (!!updateInfo.HttpsFound || + (!!updateInfo.Found && window.location.protocol !== "https:"))) { this.$notify.warning({ title: '发现更新', message: '发现新版本 v' + updateInfo.Version +