1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-10 16:04:19 +02:00

Merge pull request #340 from cyian-1756/tumblr-fix

Forced https for tumblr image links
This commit is contained in:
cyian-1756
2017-12-16 16:11:50 -05:00
committed by GitHub

View File

@@ -192,7 +192,7 @@ public class TumblrRipper extends AlbumRipper {
for (int j = 0; j < photos.length(); j++) {
photo = photos.getJSONObject(j);
try {
fileURL = new URL(photo.getJSONObject("original_size").getString("url"));
fileURL = new URL(photo.getJSONObject("original_size").getString("url").replaceAll("http", "https"));
m = p.matcher(fileURL.toString());
if (m.matches()) {
addURLToDownload(fileURL);
@@ -206,7 +206,7 @@ public class TumblrRipper extends AlbumRipper {
}
} else if (post.has("video_url")) {
try {
fileURL = new URL(post.getString("video_url"));
fileURL = new URL(post.getString("video_url").replaceAll("http", "https"));
addURLToDownload(fileURL);
} catch (Exception e) {
logger.error("[!] Error while parsing video in " + post, e);