diff options
Diffstat (limited to 'server/src/queryparser.cc')
-rw-r--r-- | server/src/queryparser.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/queryparser.cc b/server/src/queryparser.cc index f8d4a09..76b24a6 100644 --- a/server/src/queryparser.cc +++ b/server/src/queryparser.cc @@ -59,7 +59,7 @@ void QueryParser::startTag(std::string name, std::map< std::string, std::string> } if(name == "value") { - stack.back()->values[attributes["name"]] = attributes["value"]; + stack.back()->values[attributes["name"]] = utf8.decode(attributes["value"]); } } |