返回提交历史
Modified
src/models/loginModel.ts
+1
-1
XFEstudio/SpaceNinjaServer
fix: webui login failing on pre-nonce account that has not been used in-game since (#287)
fdaf3da4
代码差异
1 个文件
+1
-1
@@ -33,7 +33,7 @@ const databaseAccountSchema = new Schema<IDatabaseAccountDocument>(
33
33
AmazonRefreshToken: { type: String },
34
34
ConsentNeeded: { type: Boolean, required: true },
35
35
TrackedSettings: { type: [String], default: [] },
36
Nonce: { type: Number, required: true }
36
Nonce: { type: Number, default: 0 }
37
37
},
38
38
opts
39
39
);