@nebulars/primary 1.3.115 → 1.3.117

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -106,6 +106,11 @@ export default {
106
106
  },
107
107
 
108
108
  created() {
109
+ // Has Socketing
110
+ if (this.app.socket) {
111
+ return;
112
+ }
113
+
109
114
  // Polling for Sync Info
110
115
  this.$util.polling(async () => {
111
116
  // Get Token
@@ -117,6 +122,9 @@ export default {
117
122
  await this.$store.dispatch('app/TOKEN_CHECK');
118
123
  }
119
124
  });
125
+
126
+ // Update Socket
127
+ this.$store.dispatch('app/SOCKETING');
120
128
  },
121
129
 
122
130
  mounted() {
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@nebulars/primary",
3
3
  "description": "A package for Primary",
4
- "version": "1.3.115",
4
+ "version": "1.3.117",
5
5
  "main": "index.js",
6
6
  "type": "module",
7
7
  "author": "Joenix",
8
8
  "license": "MIT",
9
- "gitHead": "5ae6964199bfa3ab47cfd7d38f6abb1f2f2383a3",
9
+ "gitHead": "f2f0692c1ad00f9d35b391721a2ac5cfd41ae34c",
10
10
  "dependencies": {
11
11
  "@scaff/umd": "^3.7.44"
12
12
  }