System.out.println("Downloading [fetched " + linkBatch.size() + " links]");
for (ResponseChildData link : linkBatch)
{
ChildData data = link.getData();
/* Get link and title */
String url = data.getUrl();
String title = data.getTitle().replaceAll("/", " ");
String subreddit = data.getSubreddit();
if (!subreddits.contains(subreddit))
continue;
Thread t = new Thread(new Downloader(conf, loader, url, title, new IDownloadCallback() {