Fixed json output, fixes #348

This commit is contained in:
emeric
2023-10-30 09:37:01 +01:00
parent 3920c36896
commit 383fbb8098
4 changed files with 105 additions and 63 deletions
+1 -1
View File
@@ -365,7 +365,7 @@ namespace API::Subsonic
void Response::JsonSerializer::serializeEscapedString(std::ostream& os, std::string_view str)
{
os << '\"';
StringUtils::writeJSEscapedString(os, str);
StringUtils::writeJsonEscapedString(os, str);
os << '\"';
}