You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For some time now I'm getting this error message whenever amule needs an http connection. As of now it is unable to download any update, server list, ...
It happens with 2.3.2-2 release for ubuntu. Building from source yields the same results.
The error message is raised in HTTPDownload.cpp, line 336
if (!location.StartsWith(wxT("http://"))) {
// This is not a http url
throw wxString(_("Invalid URL for HTTP download or HTTP redirection (did you forget 'http://' ?)"));
}
It seems wxT("http://") doesn't result in "http://" anymore. No doubt because of something I did recently on the system. However, I have been unable to find the culprit. Neither can I suggest a workaround because I am not proficient in C++ and the related toolkits.
Btw, is there a special reason to use http only ? That is, not using https.
The text was updated successfully, but these errors were encountered:
For some time now I'm getting this error message whenever amule needs an http connection. As of now it is unable to download any update, server list, ...
It happens with 2.3.2-2 release for ubuntu. Building from source yields the same results.
The error message is raised in HTTPDownload.cpp, line 336
It seems wxT("http://") doesn't result in "http://" anymore. No doubt because of something I did recently on the system. However, I have been unable to find the culprit. Neither can I suggest a workaround because I am not proficient in C++ and the related toolkits.
Btw, is there a special reason to use http only ? That is, not using https.
The text was updated successfully, but these errors were encountered: