Changed: Add extra url parameters only for trusted domain requests

--HG--
branch : develop
This commit is contained in:
Nimetu 2019-05-03 08:59:07 +03:00
parent c21e133c6d
commit 23220c6b96

View file

@ -357,6 +357,9 @@ void CGroupHTMLAuth::addHTTPGetParams (string &url, bool trustedDomain)
void CGroupHTMLAuth::addHTTPPostParams (SFormFields &formfields, bool trustedDomain)
{
// no extras parameters added to url if not in trusted domains list
if (!trustedDomain) return;
if(!UserEntity || !NetMngr.getLoginCookie().isValid()) return;
uint32 cid = NetMngr.getLoginCookie().getUserId() * 16 + PlayerSelectedSlot;