Skip to content

Commit

Permalink
Merge pull request #1804 from pkuehnel/fix/errorMessageTypo
Browse files Browse the repository at this point in the history
fix(ErrorHandlingService): fix typo
  • Loading branch information
pkuehnel authored Feb 2, 2025
2 parents 1d0fcc3 + 61e5038 commit fbea1c3
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 fbea1c3

Please sign in to comment.