1
0
mirror of https://github.com/SKCraft/Launcher.git synced 2024-11-23 12:05:44 +01:00

Fix pastebin uploader

This commit is contained in:
Magi1053 2022-01-22 19:37:10 -06:00 committed by GitHub
parent 291f62a4dc
commit 288da94249
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -42,7 +42,7 @@ public class PastebinPoster {
InputStream in = null;
try {
URL url = new URL("http://pastebin.com/api/api_post.php");
URL url = new URL("https://pastebin.com/api/api_post.php");
conn = (HttpURLConnection) url.openConnection();
conn.setConnectTimeout(CONNECT_TIMEOUT);
conn.setReadTimeout(READ_TIMEOUT);