fix requests not sending sometimes

This commit is contained in:
caneleex 2021-07-24 16:57:42 +02:00
parent 9be95a105b
commit 85665f3f2a
1 changed files with 1 additions and 0 deletions

View File

@ -184,6 +184,7 @@ public class Requester {
String url = SPONSORBLOCK_API_URL + route.compile(params).getCompiledRoute();
HttpURLConnection connection = (HttpURLConnection) new URL(url).openConnection();
connection.setRequestMethod(route.getMethod().name());
connection.getInputStream().close(); // this is required so it properly establishes the connection when not reading the InputStream in any of the routes
return connection;
}