We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78d9a80 commit c396beaCopy full SHA for c396bea
1 file changed
src/main/java/org/jpaste/pastebin/Pastebin.java
@@ -216,8 +216,8 @@ public static PastebinLink[] getMostRecent(Post post) throws ParseException {
216
String url = API_SCRAPING_LINK;
217
if (post != null && !post.getPost().isEmpty()) {
218
url += "?" + post.getPost();
219
-
220
}
+
221
String response = Web.getContents(url);
222
223
if (response == null || response.isEmpty()
@@ -269,4 +269,4 @@ private static ArrayList<Object> getJSonData(String response) {
269
return null;
270
271
272
- }
+}
0 commit comments