Skip to content

Commit

Permalink
send theme as lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
kkuepper committed Apr 3, 2024
1 parent c629a06 commit a8cb226
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BMM.Core/Implementations/DeepLinking/DeepLinkHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ private async Task OpenRomansQuestions()
await NavigateTo<WebBrowserViewModel, IWebBrowserPrepareParams>(new WebBrowserPrepareParams
{
Url =
$"{_remoteConfig.RomansQuestionsUrl}?theme={await _deviceInfo.GetCurrentTheme()}&language={_appLanguageProvider.GetAppLanguage()}",
$"{_remoteConfig.RomansQuestionsUrl}?theme={(await _deviceInfo.GetCurrentTheme()).ToString().ToLower()}&language={_appLanguageProvider.GetAppLanguage()}",
Title = _bmmLanguageBinder[Translations.DeepLinkHandler_RomansQuestionsPageTitle]
});
}
Expand Down

0 comments on commit a8cb226

Please sign in to comment.