mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 10:22:45 -04:00
URL fix
This commit is contained in:
parent
5f12039c40
commit
29a041d580
@ -292,8 +292,11 @@ get_plugin(const string &root_url, const string &this_platform, bool force_downl
|
|||||||
|
|
||||||
// Couldn't read it, so go get it.
|
// Couldn't read it, so go get it.
|
||||||
string url = root_url;
|
string url = root_url;
|
||||||
|
if (url.size() > 0 && url[url.size()-1] != '/') {
|
||||||
|
url += "/";
|
||||||
|
}
|
||||||
url += "contents.xml";
|
url += "contents.xml";
|
||||||
cerr << "Getting URL " << root_url << "\n";
|
cerr << "Getting URL " << url << "\n";
|
||||||
|
|
||||||
HTTPClient *http = HTTPClient::get_global_ptr();
|
HTTPClient *http = HTTPClient::get_global_ptr();
|
||||||
PT(HTTPChannel) channel = http->get_document(url);
|
PT(HTTPChannel) channel = http->get_document(url);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user