Fixed: Resolve http-equiv refresh url

This commit is contained in:
Nimetu 2016-05-13 13:57:28 +03:00
parent e040e2c6fb
commit 74ffe24965

View file

@ -1166,7 +1166,7 @@ namespace NLGUI
pos = toLower(content).find("url="); pos = toLower(content).find("url=");
if (pos != string::npos) if (pos != string::npos)
_RefreshUrl = content.substr(pos + 4); _RefreshUrl = getAbsoluteUrl(content.substr(pos + 4));
} }
_NextRefreshTime += timeSec; _NextRefreshTime += timeSec;