1
0
mirror of synced 2024-11-28 08:30:56 +01:00

Fix error that occurred when creating a new card

This commit is contained in:
esuo1198 2023-11-17 16:49:19 +09:00
parent 3fc8134d5b
commit 66eb2a06c3

View File

@ -26,18 +26,6 @@ public class MyDonEntryController : BaseController<MyDonEntryController>
Logger.LogInformation("MyDonEntry request : {Request}", request.Stringify());
var newId = cardService.GetNextBaid();
await cardService.AddCard(new Card
{
AccessCode = request.WechatQrStr,
Baid = newId
});
await credentialService.AddCredential(new Credential
{
Baid = newId,
Password = "",
Salt = ""
});
var newUser = new UserDatum
{
@ -58,9 +46,21 @@ public class MyDonEntryController : BaseController<MyDonEntryController>
TokenCountDict = "{}",
UnlockedSongIdList = "[]"
};
await userDatumService.InsertUserDatum(newUser);
await cardService.AddCard(new Card
{
AccessCode = request.WechatQrStr,
Baid = newId
});
await credentialService.AddCredential(new Credential
{
Baid = newId,
Password = "",
Salt = ""
});
var response = new MydonEntryResponse
{
Result = 1,