Added support for imgur /t albums
This commit is contained in:
parent
83aac613b5
commit
e584e64206
@ -448,6 +448,15 @@ public class ImgurRipper extends AlbumRipper {
|
|||||||
this.url = new URL("http://imgur.com/a/" + gid);
|
this.url = new URL("http://imgur.com/a/" + gid);
|
||||||
return gid;
|
return gid;
|
||||||
}
|
}
|
||||||
|
p = Pattern.compile("^https?://(www\\.|m\\.)?imgur\\.com/(a|gallery|t)/[a-zA-Z0-9]*/([a-zA-Z0-9]{5,}).*$");
|
||||||
|
m = p.matcher(url.toExternalForm());
|
||||||
|
if (m.matches()) {
|
||||||
|
// Imgur album or gallery
|
||||||
|
albumType = ALBUM_TYPE.ALBUM;
|
||||||
|
String gid = m.group(m.groupCount());
|
||||||
|
this.url = new URL("http://imgur.com/a/" + gid);
|
||||||
|
return gid;
|
||||||
|
}
|
||||||
p = Pattern.compile("^https?://([a-zA-Z0-9\\-]{3,})\\.imgur\\.com/?$");
|
p = Pattern.compile("^https?://([a-zA-Z0-9\\-]{3,})\\.imgur\\.com/?$");
|
||||||
m = p.matcher(url.toExternalForm());
|
m = p.matcher(url.toExternalForm());
|
||||||
if (m.matches()) {
|
if (m.matches()) {
|
||||||
|
Loading…
Reference in New Issue
Block a user