Fix current page in sockets.js
authorBenjamin Auder <benjamin.auder@somewhere>
Tue, 4 Feb 2020 09:24:10 +0000 (10:24 +0100)
committerBenjamin Auder <benjamin.auder@somewhere>
Tue, 4 Feb 2020 09:24:10 +0000 (10:24 +0100)
client/src/main.js

index 7015362..9d2e73d 100644 (file)
@@ -24,7 +24,7 @@ new Vue({
     });
     // TODO: why is this wrong? (Maybe because $route still uninitialized?)
     //store.initialize(this.$route.path);
     });
     // TODO: why is this wrong? (Maybe because $route still uninitialized?)
     //store.initialize(this.$route.path);
-    store.initialize(window.location.href.split("#")[1]);
+    store.initialize(window.location.href.split("#")[1].split("?")[0]);
     // NOTE: at this point, variants and tr(anslations) might be uninitialized
   },
 }).$mount("#app");
     // NOTE: at this point, variants and tr(anslations) might be uninitialized
   },
 }).$mount("#app");