summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorXisco Fauli <xiscofauli@libreoffice.org>2019-01-30 16:42:43 +0100
committerXisco Faulí <xiscofauli@libreoffice.org>2019-02-01 07:18:56 +0100
commit90b979e3977053f96f16ae4b87584536f5099280 (patch)
tree475a2261bea42499eeb7826f4ac26b0ebdfa886a /cui
parent6cb50965f80fc36388e8dc5dfbc1e6205f69cb92 (diff)
tdf#123050: catch object does not have a key labeled 'theme_data'
json::document_error: node::child: this object does not have a key labeled 'theme_data' Change-Id: Ic4daf53cff4e3e25b83393cb92957bf60cd5a92c Reviewed-on: https://gerrit.libreoffice.org/67161 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com> (cherry picked from commit 45a0f2177b089065a2099a798639cb534ad67ac3) Reviewed-on: https://gerrit.libreoffice.org/67227 Reviewed-by: Xisco Faulí <xiscofauli@libreoffice.org>
Diffstat (limited to 'cui')
-rw-r--r--cui/source/options/personalization.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/options/personalization.cxx b/cui/source/options/personalization.cxx
index f199ab2082cb..625362004fe6 100644
--- a/cui/source/options/personalization.cxx
+++ b/cui/source/options/personalization.cxx
@@ -814,10 +814,10 @@ PersonaInfo parseSingleResponse(const std::string& rResponse)
return PersonaInfo();
}
- auto theme_data = aDocumentRoot.child("theme_data");
-
try
{
+ auto theme_data = aDocumentRoot.child("theme_data");
+
PersonaInfo aNewPersona = {
OUString(),
OStringToOUString( OString(theme_data.child("name").string_value().get()),