소스 검색

Do not show version notifications for prereleases.

Ian Walton 2 년 전
부모
커밋
e25c01170e
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      native/jmpUpdatePlugin.js

+ 1 - 0
native/jmpUpdatePlugin.js

@@ -19,6 +19,7 @@ class jmpUpdatePlugin {
                 const version = urlSegments[urlSegments.length - 1].substring(1);
                 const currentVersion = navigator.userAgent.split(" ")[1];
 
+                if (currentVersion.includes('pre')) return; // Do not notify for prereleases
                 if (version == currentVersion) return;
                 if (!/^[0-9.-]+$/.test(version)) return;