Increase timeout, avoid prefxies on deviantart rips

For #159 and #113 respectively
This commit is contained in:
4pr0n 2015-02-07 23:49:21 -08:00
parent 156a50d9f9
commit 069ad13f07

View File

@ -29,7 +29,7 @@ import com.rarchives.ripme.utils.Utils;
public class DeviantartRipper extends AbstractHTMLRipper {
private static final int PAGE_SLEEP_TIME = 3000,
IMAGE_SLEEP_TIME = 1500;
IMAGE_SLEEP_TIME = 2000;
private Map<String,String> cookies = new HashMap<String,String>();
private Set<String> triedURLs = new HashSet<String>();
@ -193,6 +193,13 @@ public class DeviantartRipper extends AbstractHTMLRipper {
.get();
}
@Override
public boolean keepSortOrder() {
// Don't keep sort order (do not add prefixes).
// Causes file duplication, as outlined in https://github.com/4pr0n/ripme/issues/113
return false;
}
@Override
public void downloadURL(URL url, int index) {
addURLToDownload(url, getPrefix(index), "", this.url.toExternalForm(), cookies);