Merge pull request #875 from cyian-1756/redditConfigChanges

Added config option to allow for using subdirs with the reddit ripper
This commit is contained in:
cyian-1756 2018-08-22 07:44:42 -04:00 committed by GitHub
commit f3d827efbe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -225,14 +225,15 @@ public class RedditRipper extends AlbumRipper {
} catch (MalformedURLException e) { } catch (MalformedURLException e) {
return; return;
} }
String subdirectory = ""; String subdirectory = "";
if (Utils.getConfigBoolean("reddit.use_sub_dirs", true)) {
if (Utils.getConfigBoolean("album_titles.save", true)) { if (Utils.getConfigBoolean("album_titles.save", true)) {
subdirectory = title; subdirectory = title;
title = "-" + title + "-"; title = "-" + title + "-";
} else { } else {
title = ""; title = "";
} }
}
List<URL> urls = RipUtils.getFilesFromURL(originalURL); List<URL> urls = RipUtils.getFilesFromURL(originalURL);
if (urls.size() == 1) { if (urls.size() == 1) {