From 7b29032dda4fbf68d4da8d62a1c80ee6105a6804 Mon Sep 17 00:00:00 2001 From: ysmoradi Date: Mon, 23 Dec 2024 14:04:56 +0100 Subject: [PATCH] fix --- .../src/Client/Boilerplate.Client.Core/Services/AuthManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Templates/Boilerplate/Bit.Boilerplate/src/Client/Boilerplate.Client.Core/Services/AuthManager.cs b/src/Templates/Boilerplate/Bit.Boilerplate/src/Client/Boilerplate.Client.Core/Services/AuthManager.cs index 0e241afb2c..bc9ae8b128 100644 --- a/src/Templates/Boilerplate/Bit.Boilerplate/src/Client/Boilerplate.Client.Core/Services/AuthManager.cs +++ b/src/Templates/Boilerplate/Bit.Boilerplate/src/Client/Boilerplate.Client.Core/Services/AuthManager.cs @@ -130,7 +130,7 @@ async Task RefreshTokenImplementation() { "RefreshTokenRequestedBy", requestedBy } }, nonInterrupting: exp is ReusedRefreshTokenException); - if (exp is UnauthorizedException) + if (exp is UnauthorizedException) // refresh token is also invalid. { await ClearTokens(); }