Przeglądaj źródła

fixes #528

tags/v0.1.10^2
big bad waffle 6 lat temu
rodzic
commit
faf4e5b20b
1 zmienionych plików z 6 dodań i 1 usunięć
  1. +6
    -1
      src/server/components/auth.js

+ 6
- 1
src/server/components/auth.js Wyświetl plik

@@ -108,7 +108,7 @@ define([
io.set({
ent: this.username,
field: 'stash',
value: JSON.stringify(this.obj.stash.items)
value: JSON.stringify(this.obj.stash.items).split(`'`).join('`')
});
},

@@ -209,6 +209,11 @@ define([
},

onGetStash: function (data, character, result) {
if (result) {
result = result.split('`').join(`'`);
result = result.replace(/''+/g, '\'');
}

this.stash = JSON.parse(result || '[]');

if (this.skins != null) {


Ładowanie…
Anuluj
Zapisz