Fixed: Added a check for https:// npc web pages

--HG--
branch : compatibility-develop
hg/compatibility-develop
ulukyn 6 years ago
parent 203187542c
commit 056c6b86e6

@ -3202,7 +3202,7 @@ void CLuaIHMRyzom::browseNpcWebPage(const std::string &htmlId, const std::string
if (groupHtml)
{
// if true, it means that we want to display a web page that use webig auth
bool webig = urlIn.find("http://") == 0;
bool webig = urlIn.find("http://") == 0 || urlIn.find("https://") == 0;
string url;

Loading…
Cancel
Save