Skip to content

Commit

Permalink
fix(ErrorHandlingService): fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pkuehnel committed Feb 1, 2025
1 parent 1d0fcc3 commit 61e5038
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TeslaSolarCharger/Server/Services/ErrorHandlingService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ private async Task DetectTokenStateIssues(List<LoggedError> activeErrors)
logger.LogTrace("{method}()", nameof(DetectTokenStateIssues));
var backendTokenState = await tokenHelper.GetBackendTokenState(true);
var fleetApiTokenState = await tokenHelper.GetFleetApiTokenState(true);
await AddOrRemoveErrors(activeErrors, issueKeys.NoBackendApiToken, "Backen API Token not up to date",
await AddOrRemoveErrors(activeErrors, issueKeys.NoBackendApiToken, "Backend API Token not up to date",
"You are currently not connected to the backend. Open the <a href=\"/cloudconnection\">Cloud Connection</a> and request a new token.",
backendTokenState != TokenState.UpToDate).ConfigureAwait(false);
await AddOrRemoveErrors(activeErrors, issueKeys.FleetApiTokenUnauthorized, "Fleet API token is unauthorized",
Expand Down

0 comments on commit 61e5038

Please sign in to comment.