Fixed: Parsing url authority when path is empty

This commit is contained in:
Nimetu 2016-05-14 12:53:09 +03:00
parent 08a2506286
commit 0d3c81dde1

View file

@ -66,7 +66,7 @@ namespace NLGUI
// scan for authority // scan for authority
if (uri.substr(0, 2) == "//") if (uri.substr(0, 2) == "//")
{ {
pos = uri.find("/", 3); pos = uri.find_first_of("/?", 2);
authority = uri.substr(0, pos); authority = uri.substr(0, pos);
if (pos != npos) if (pos != npos)
uri = uri.substr(pos); uri = uri.substr(pos);