diff --git a/es-app/src/guis/GuiScraperSearch.cpp b/es-app/src/guis/GuiScraperSearch.cpp index d1c2c02f1..c49f42518 100644 --- a/es-app/src/guis/GuiScraperSearch.cpp +++ b/es-app/src/guis/GuiScraperSearch.cpp @@ -666,6 +666,11 @@ bool GuiScraperSearch::saveMetadata( metadata.set(key, result.mdl.get(key)); mMetadataUpdated = true; } + + // For the description, expand any escaped HTML quotation marks to literal + // quotation marks. + if (key == "desc" && mMetadataUpdated) + metadata.set(key, Utils::String::replace(metadata.get(key), """, "\"")); } return mMetadataUpdated;