Quellcode durchsuchen

fixes #528

tags/v0.1.10^2
big bad waffle vor 6 Jahren
Ursprung
Commit
faf4e5b20b
1 geänderte Dateien mit 6 neuen und 1 gelöschten Zeilen
  1. +6
    -1
      src/server/components/auth.js

+ 6
- 1
src/server/components/auth.js Datei anzeigen

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


Laden…
Abbrechen
Speichern