浏览代码

bug #1897

(cherry picked from commit 7de88f0854)
tags/v0.10.5.6
Shaun 2 年前
committed by Big Bad Waffle
父节点
当前提交
f110f08901
共有 1 个文件被更改,包括 4 次插入2 次删除
  1. +4
    -2
      src/server/components/auth.js

+ 4
- 2
src/server/components/auth.js 查看文件

@@ -303,7 +303,8 @@ module.exports = {
table: 'accountInfo', table: 'accountInfo',
noDefault: true noDefault: true
}) || { }) || {
loginStreak: 0
loginStreak: 0,
level: 0
}; };


const msgAccountInfo = { const msgAccountInfo = {
@@ -392,7 +393,8 @@ module.exports = {
}); });


this.accountInfo = { this.accountInfo = {
loginStreak: 0
loginStreak: 0,
level: 0
}; };


await io.setAsync({ await io.setAsync({


正在加载...
取消
保存