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
commit d8f346ed52

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;
}