Removing an extra space

This commit is contained in:
Daniel Schulte 2014-06-30 23:23:46 +02:00
parent c8cb0c00b3
commit 6daa81bb42

View File

@ -97,7 +97,7 @@ public class TapasticRipper extends AbstractHTMLRipper {
String link=images.get(i).attr("src");
String postfix=String.format(" %d-%d ", i+1,images.size());
TapasticEpisode episode=episodes.get(index-1);
addURLToDownload(new URL(link), getPrefix(index)+episode.filename+postfix+" ");
addURLToDownload(new URL(link), getPrefix(index)+episode.filename+postfix);
}
} catch (IOException e) {
logger.error("[!] Exception while loading/parsing " + this.url,e);