diff --git a/out/boot.dol b/out/boot.dol index 1f91599a..6e0f2282 100644 Binary files a/out/boot.dol and b/out/boot.dol differ diff --git a/source/network/http.c b/source/network/http.c index 756f3bc7..36c0fdac 100644 --- a/source/network/http.c +++ b/source/network/http.c @@ -162,7 +162,7 @@ struct block downloadfile(u8 *buffer, u32 bufferSize, const char *url, bool (*f) if(connection < 0) return emptyblock; //Form a nice request header to send to the webserver - char* headerformat = "GET %s HTTP/1.0\r\nHost: %s\r\nUser-Agent: Mozilla/5.0 (Windows NT 6.3; rv:36.0) Gecko/20100101 Firefox/36.0\r\n\r\n";; + char* headerformat = "GET %s HTTP/1.0\r\nHost: %s\r\nUser-Agent: WiiFlow 2.1\r\n\r\n";; char header[strlen(headerformat) + strlen(domain) + strlen(path)]; sprintf(header, headerformat, path, domain);