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

Merge pull request #800 from cyian-1756/desuarchive

Added support for Desuarchive.org
This commit is contained in:
cyian-1756
2018-07-14 14:49:26 -04:00
committed by GitHub

View File

@@ -97,6 +97,9 @@ public class ChanRipper extends AbstractHTMLRipper {
if (url.toExternalForm().contains("xchan.pw") && url.toExternalForm().contains("/board/")) { if (url.toExternalForm().contains("xchan.pw") && url.toExternalForm().contains("/board/")) {
return true; return true;
} }
if (url.toExternalForm().contains("desuarchive.org")) {
return true;
}
return false; return false;
} }