返回提交历史
Modified
src/models/loginModel.ts
+1
-1
XFEstudio/SpaceNinjaServer
fix: can't log in to existing account
01d369bf
代码差异
1 个文件
+1
-1
@@ -21,7 +21,7 @@ const databaseAccountSchema = new Schema<IDatabaseAccountJson>(
21
21
TrackedSettings: { type: [String], default: [] },
22
22
Nonce: { type: Number, default: 0 },
23
23
LastLoginDay: { type: Number },
24
LatestEventMessageDate: { type: Date, required: true }
24
LatestEventMessageDate: { type: Date, default: 0 }
25
25
},
26
26
opts
27
27
);