mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-29 19:55:37 +00:00
Updated Scraper to not use deprecated pugixml method
This commit is contained in:
parent
6303aa5664
commit
eec27c0258
|
@ -167,7 +167,7 @@ void ScreenScraperRequest::process(const std::unique_ptr<HttpReq>& req, std::vec
|
|||
assert(req->status() == HttpReq::REQ_SUCCESS);
|
||||
|
||||
pugi::xml_document doc;
|
||||
pugi::xml_parse_result parseResult = doc.load(req->getContent().c_str());
|
||||
pugi::xml_parse_result parseResult = doc.load_string(req->getContent().c_str());
|
||||
|
||||
if (!parseResult)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue