use async for WriteData

This commit is contained in:
Mikhail
2024-07-11 14:35:48 -04:00
parent ed40557e19
commit 988c71c5b2
121 changed files with 132 additions and 131 deletions

View File

@@ -36,8 +36,9 @@ namespace nksrv.LobbyServer.Msgs.Auth
response.FeatureDataInfo = new NetFeatureDataInfo() { UseFeatureData = true };
response.Identifier = new NetLegacyUserIdentifier() { Server = 21769, Usn = (long)user.ID };
response.ShouldRestartAfter = Duration.FromTimeSpan(TimeSpan.FromSeconds(86400));
response.EncryptionToken = ByteString.CopyFromUtf8(rsp.ClientAuthToken);
WriteData(response);
await WriteDataAsync(response);
}
}
}