Procházet zdrojové kódy

fixes #528

tags/v0.1.10^2
big bad waffle před 6 roky
rodič
revize
faf4e5b20b
1 změnil soubory, kde provedl 6 přidání a 1 odebrání
  1. +6
    -1
      src/server/components/auth.js

+ 6
- 1
src/server/components/auth.js Zobrazit soubor

@@ -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) {


Načítá se…
Zrušit
Uložit