From 698c71f1378899e41fba480ff2b7197137c782bd Mon Sep 17 00:00:00 2001 From: ulukyn Date: Tue, 4 Sep 2018 12:16:48 +0200 Subject: [PATCH] Fixed: Added a check for https:// npc web pages --HG-- branch : patches-from-atys --- code/ryzom/client/src/interface_v3/lua_ihm_ryzom.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/ryzom/client/src/interface_v3/lua_ihm_ryzom.cpp b/code/ryzom/client/src/interface_v3/lua_ihm_ryzom.cpp index 1f4817125..e8a632762 100644 --- a/code/ryzom/client/src/interface_v3/lua_ihm_ryzom.cpp +++ b/code/ryzom/client/src/interface_v3/lua_ihm_ryzom.cpp @@ -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;