1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-26 15:24:51 +02:00

Small fix

This commit is contained in:
MrPlaygon
2019-02-16 18:55:52 +01:00
parent 7b57d3cbfd
commit 9eac66ef10

View File

@@ -32,8 +32,6 @@ import org.jsoup.select.Elements;
* *
* NOT using Deviantart API like the old JSON ripper because it is SLOW * NOT using Deviantart API like the old JSON ripper because it is SLOW
* and somehow annoying to use. * and somehow annoying to use.
*
*
* Things to consider: Using the API might be less work/maintenance later because APIs do not change as frequently as HTML source code...? * Things to consider: Using the API might be less work/maintenance later because APIs do not change as frequently as HTML source code...?
* *
* *
@@ -308,7 +306,7 @@ public class DeviantartRipper extends AbstractHTMLRipper {
artist = m.group(1); artist = m.group(1);
} else { } else {
throw new MalformedURLException("Expected deviantart.com URL format: " throw new MalformedURLException("Expected deviantart.com URL format: "
+ "www.deviantart.com/<ARTIST>/gallery/<NUMBERS>/<NAME>\nOR\nwww.deviantart.com/<ARTIST>/favourites/<NUMBERS>/<NAME> - got " + "www.deviantart.com/<ARTIST>/gallery/<NUMBERS>/<NAME>\nOR\nwww.deviantart.com/<ARTIST>/favourites/<NUMBERS>/<NAME>\\nOr simply the gallery or favorites of some artist - got "
+ url + " instead"); + url + " instead");
} }
@@ -319,7 +317,7 @@ public class DeviantartRipper extends AbstractHTMLRipper {
what = "favourites"; what = "favourites";
} else { } else {
throw new MalformedURLException("Expected deviantart.com URL format: " throw new MalformedURLException("Expected deviantart.com URL format: "
+ "www.deviantart.com/<ARTIST>/gallery/<NUMBERS>/<NAME>\nOR\nwww.deviantart.com/<ARTIST>/favourites/<NUMBERS>/<NAME> - got " + "www.deviantart.com/<ARTIST>/gallery/<NUMBERS>/<NAME>\nOR\nwww.deviantart.com/<ARTIST>/favourites/<NUMBERS>/<NAME>\nOr simply the gallery or favorites of some artist - got "
+ url + " instead"); + url + " instead");
} }
@@ -524,6 +522,7 @@ public class DeviantartRipper extends AbstractHTMLRipper {
addURLToDownload(new URL(parts[0]), "", "", "", new HashMap<String, String>(), addURLToDownload(new URL(parts[0]), "", "", "", new HashMap<String, String>(),
title + "." + tmpParts[tmpParts.length - 1]); title + "." + tmpParts[tmpParts.length - 1]);
return;
} catch (IOException e) { } catch (IOException e) {
e.printStackTrace(); e.printStackTrace();