big bad waffle 6 роки тому
джерело
коміт
faf4e5b20b
1 змінених файлів з 6 додано та 1 видалено
  1. +6
    -1
      src/server/components/auth.js

+ 6
- 1
src/server/components/auth.js Переглянути файл

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


Завантаження…
Відмінити
Зберегти