Add user agent to URLConnection

This could help the server not denying (403) the request.
This commit is contained in:
Arnaud Lier 2020-06-17 15:34:37 +02:00 committed by GitHub
parent dbe9975e49
commit 87edc2da48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -69,6 +69,7 @@ public class ImageRendererExecutor extends Worker
public ImageMap run() throws Throwable
{
final URLConnection connection = url.openConnection();
connection.addRequestProperty("User-Agent", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:25.0) Gecko/20100101 Firefox/25.0");
connection.connect();
if (connection instanceof HttpURLConnection)
@ -179,4 +180,4 @@ public class ImageRendererExecutor extends Worker
return MapManager.createMap(poster, playerUUID, mapsIDs);
}
}
}