Skip to content

Commit

Permalink
Fix encoding used for override server url
Browse files Browse the repository at this point in the history
Signed-off-by: Claudio Cambra <[email protected]>
  • Loading branch information
claucambra authored and mgallien committed Nov 19, 2024
1 parent 8268c0f commit 96e2264
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libsync/theme.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ Theme::Theme()
_forceOverrideServerUrl = true;
#endif
#ifdef APPLICATION_SERVER_URL
setOverrideServerUrl(QString::fromLatin1(APPLICATION_SERVER_URL));
setOverrideServerUrl(QString::fromUtf8(APPLICATION_SERVER_URL));
#endif
}

Expand Down

0 comments on commit 96e2264

Please sign in to comment.