mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-25 15:45:38 +00:00
Fixed a scraper issue where escaped HTML quotation marks were not expanded for the game description.
This commit is contained in:
parent
9f04458bbd
commit
2371ef51bc
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue