Skip to content

Commit

Permalink
Fixes the build after changing ToUpper/ToLower
Browse files Browse the repository at this point in the history
  • Loading branch information
crsib committed Feb 1, 2024
1 parent d2cf1b0 commit 5a6e00e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/lib-cloud-audiocom/OAuthService.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ void OAuthService::ValidateAuth(
bool OAuthService::HandleLinkURI(
std::string_view uri, std::function<void(std::string_view)> completedHandler)
{
if (!IsPrefixed(uri, uriPrefix, false))
if (!IsPrefixedInsensitive(uri, uriPrefix))
{
if (completedHandler)
completedHandler({});
Expand Down

0 comments on commit 5a6e00e

Please sign in to comment.