Merge branch 'develop' into feedback-service

This commit is contained in:
emeric
2023-10-31 13:48:41 +01:00
3 changed files with 35 additions and 20 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 << '\"';
}