1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-26 23:34:53 +02:00

Merge pull request #294 from i-cant-git/patch-1

Use :orig instead of :large in TwitterRipper
This commit is contained in:
4_pr0n
2016-04-14 22:37:58 -07:00

View File

@@ -184,7 +184,7 @@ public class TwitterRipper extends AlbumRipper {
media = (JSONObject) medias.get(i);
url = media.getString("media_url");
if (url.contains(".twimg.com/")) {
url += ":large";
url += ":orig";
addURLToDownload(new URL(url));
return true;
}