projects
/
nextcloud-desktop.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8268c0f
)
Fix encoding used for override server url
author
Claudio Cambra
<claudio.cambra@nextcloud.com>
Thu, 24 Oct 2024 10:08:47 +0000
(18:08 +0800)
committer
Matthieu Gallien
<matthieu.gallien@nextcloud.com>
Tue, 19 Nov 2024 12:40:18 +0000
(13:40 +0100)
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
src/libsync/theme.cpp
patch
|
blob
|
history
diff --git
a/src/libsync/theme.cpp
b/src/libsync/theme.cpp
index 85efef02be0f442e01837f881650ac8aed0eeb1e..d10d50be4f650ca59a7c9cdc31707e814325b381 100644
(file)
--- a/
src/libsync/theme.cpp
+++ b/
src/libsync/theme.cpp
@@
-384,7
+384,7
@@
Theme::Theme()
_forceOverrideServerUrl = true;
#endif
#ifdef APPLICATION_SERVER_URL
- setOverrideServerUrl(QString::from
Latin1
(APPLICATION_SERVER_URL));
+ setOverrideServerUrl(QString::from
Utf8
(APPLICATION_SERVER_URL));
#endif
}