XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet

SpaceNinjaServer

A simple server for a small space ninja game

公开
关注 0 Fork 1 Star 0
返回提交历史

XFEstudio/SpaceNinjaServer

fix: webui login failing on pre-nonce account that has not been used in-game since (#287)

fdaf3da4
Sainan <sainan@calamity.gg>
提交于

代码差异

1 个文件 +1 -1
Modified src/models/loginModel.ts +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 );