Skip to content

Commit 4463238

Browse files
Fix EromeRipper doesn't correctly download albums that are a mix of images and video #2121 (#2141)
1 parent d836a17 commit 4463238

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/com/rarchives/ripme/ripper/rippers/EromeRipper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public String getHost() {
4848

4949
@Override
5050
public void downloadURL(URL url, int index) {
51-
addURLToDownload(url, getPrefix(index), "", "erome.com", this.cookies);
51+
addURLToDownload(url, getPrefix(index), "", this.url.toString(), this.cookies);
5252
}
5353

5454
@Override

src/test/java/com/rarchives/ripme/tst/ripper/rippers/EromeRipperTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public void testRip() throws IOException, URISyntaxException {
5151
@Test
5252
@Tag("slow")
5353
public void testVideoAlbumRip() throws IOException, URISyntaxException {
54-
URL url = new URI("https://www.erome.com/a/P0x5Ambn").toURL();
54+
URL url = new URI("https://www.erome.com/a/jEUFu6pi").toURL();
5555
EromeRipper ripper = new EromeRipper(url);
5656
testRipper(ripper);
5757
}

0 commit comments

Comments
 (0)