1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-20 04:31:55 +02:00

Fix EromeRipper doesn't correctly download albums that are a mix of images and video #2121 (#2141)

This commit is contained in:
Aldo Queiroz
2025-08-07 19:16:14 -03:00
committed by GitHub
parent d836a17933
commit 4463238603
2 changed files with 2 additions and 2 deletions

View File

@@ -48,7 +48,7 @@ public class EromeRipper extends AbstractHTMLRipper {
@Override
public void downloadURL(URL url, int index) {
addURLToDownload(url, getPrefix(index), "", "erome.com", this.cookies);
addURLToDownload(url, getPrefix(index), "", this.url.toString(), this.cookies);
}
@Override

View File

@@ -51,7 +51,7 @@ public class EromeRipperTest extends RippersTest {
@Test
@Tag("slow")
public void testVideoAlbumRip() throws IOException, URISyntaxException {
URL url = new URI("https://www.erome.com/a/P0x5Ambn").toURL();
URL url = new URI("https://www.erome.com/a/jEUFu6pi").toURL();
EromeRipper ripper = new EromeRipper(url);
testRipper(ripper);
}