mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-23 12:06:15 +01:00
Fix debugpaste
This commit is contained in:
parent
15d4b6d34b
commit
e3eccfd476
@ -10,7 +10,7 @@ import java.util.regex.Pattern;
|
|||||||
|
|
||||||
public class HastebinUtility {
|
public class HastebinUtility {
|
||||||
|
|
||||||
public static final String BIN_URL = "http://hastebin.com/documents", USER_AGENT = "Mozilla/5.0";
|
public static final String BIN_URL = "https://hastebin.com/documents", USER_AGENT = "Mozilla/5.0";
|
||||||
public static final Pattern PATTERN = Pattern.compile("\\{\"key\":\"([\\S\\s]*)\"\\}");
|
public static final Pattern PATTERN = Pattern.compile("\\{\"key\":\"([\\S\\s]*)\"\\}");
|
||||||
|
|
||||||
public static String upload(final String string) throws IOException {
|
public static String upload(final String string) throws IOException {
|
||||||
@ -38,7 +38,7 @@ public class HastebinUtility {
|
|||||||
|
|
||||||
Matcher matcher = PATTERN.matcher(response.toString());
|
Matcher matcher = PATTERN.matcher(response.toString());
|
||||||
if (matcher.matches()) {
|
if (matcher.matches()) {
|
||||||
return "http://hastebin.com/" + matcher.group(1);
|
return "https://hastebin.com/" + matcher.group(1);
|
||||||
} else {
|
} else {
|
||||||
throw new RuntimeException("Couldn't read response!");
|
throw new RuntimeException("Couldn't read response!");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user