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

--HG--
branch : patches-from-atys
hg/hotfix/patches-from-atys
ulukyn 6 years ago
parent dcf959fe3d
commit 698c71f137

@ -3209,7 +3209,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