Thanks ageiter
ok since the problem has been solved I no need the logs anymore.
Thanks
hi
Sorry, there is no access token in the no-tiered Blazor web app
Because it uses the Cookie authentication.
Cookie is represented a user.
Thanks, you can share it via https://wetransfer.com/
I will send you the new log file by e-mail in about 30 minutes...
OK, I will check the logs.
Can you reproduce the Problem in the new template?
If so, Please share the template with liming.ma@volosoft.com
I will download and test it.
Thanks.
hi
Please search where PaymentRequestRepository.UpdateAsync(paymentRequest) is called. Concurrency exception occurs here.
Please use try catch and set autoSave: true. You will get the exception stack.
try
{
var paymentRequest = await PaymentRequestRepository.GetAsync(paymentRequestId);
// update paymentRequest
await PaymentRequestRepository.UpdateAsync(paymentRequest, autoSave: true);
}
catch(e)
{
Logger.LogError("PaymentRequestRepository.UpdateAsync", e);
}
Thanks.