浏览代码

fix(frontend): config version check should be before attempting a websocket connection

Signed-off-by: Jonathan <theflametrooper@gmail.com>
Jonathan 4 年之前
父节点
当前提交
9b6b278989
共有 1 个文件被更改,包括 14 次插入14 次删除
  1. 14 14
      frontend/src/main.js

+ 14 - 14
frontend/src/main.js

@@ -140,6 +140,20 @@ const router = new VueRouter({
 lofig.folder = "../config/default.json";
 
 (async () => {
+	lofig.fetchConfig().then(config => {
+		const { configVersion, skipConfigVersionCheck } = config;
+		if (
+			configVersion !== REQUIRED_CONFIG_VERSION &&
+			!skipConfigVersionCheck
+		) {
+			// eslint-disable-next-line no-alert
+			alert(
+				"CONFIG VERSION IS WRONG. PLEASE UPDATE YOUR CONFIG WITH THE HELP OF THE TEMPLATE FILE AND THE README FILE."
+			);
+			window.stop();
+		}
+	});
+
 	const websocketsDomain = await lofig.get("websocketsDomain");
 	ws.init(websocketsDomain);
 
@@ -177,20 +191,6 @@ lofig.folder = "../config/default.json";
 		);
 	});
 
-	lofig.fetchConfig().then(config => {
-		const { configVersion, skipConfigVersionCheck } = config;
-		if (
-			configVersion !== REQUIRED_CONFIG_VERSION &&
-			!skipConfigVersionCheck
-		) {
-			// eslint-disable-next-line no-alert
-			alert(
-				"CONFIG VERSION IS WRONG. PLEASE UPDATE YOUR CONFIG WITH THE HELP OF THE TEMPLATE FILE AND THE README FILE."
-			);
-			window.stop();
-		}
-	});
-
 	router.beforeEach((to, from, next) => {
 		if (window.stationInterval) {
 			clearInterval(window.stationInterval);