@everymatrix/player-account-controller 0.0.239 → 0.0.240

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everymatrix/player-account-controller",
3
- "version": "0.0.239",
3
+ "version": "0.0.240",
4
4
  "main": "dist/player-account-controller.js",
5
5
  "svelte": "src/index.ts",
6
6
  "scripts": {
@@ -29,8 +29,8 @@
29
29
  "typescript": "^3.9.3"
30
30
  },
31
31
  "dependencies": {
32
- "@everymatrix/player-account-menu": "^0.0.239",
33
- "@everymatrix/player-account-notifications": "^0.0.239",
32
+ "@everymatrix/player-account-menu": "^0.0.240",
33
+ "@everymatrix/player-account-notifications": "^0.0.240",
34
34
  "cross-env": "^7.0.3",
35
35
  "sirv-cli": "^1.0.0",
36
36
  "svelte": "^3.0.0"
@@ -38,5 +38,5 @@
38
38
  "publishConfig": {
39
39
  "access": "public"
40
40
  },
41
- "gitHead": "3514a454516ab9691e0154509b1a13d332315cc5"
41
+ "gitHead": "6b0a5bd921101009e1bbfaa3fe63215a87fffc40"
42
42
  }
@@ -114,7 +114,9 @@
114
114
  return item.label == pageName;
115
115
  });
116
116
 
117
- selected = aux[0].id;
117
+ if (aux.length > 0) {
118
+ selected = aux[0].id;
119
+ }
118
120
  getUserProfileInfo();
119
121
  break;
120
122