diff --git a/src/jd/plugins/hoster/FuckingfastCo.java b/src/jd/plugins/hoster/FuckingfastCo.java index 8a1b8dcf1f..269fe25da0 100644 --- a/src/jd/plugins/hoster/FuckingfastCo.java +++ b/src/jd/plugins/hoster/FuckingfastCo.java @@ -149,15 +149,7 @@ public class FuckingfastCo extends PluginForHost { logger.log(ignore); } dl = jd.plugins.BrowserAdapter.openDownload(br, link, dllink, this.isResumeable(link, null), this.getMaxChunks(link, null)); - if (!this.looksLikeDownloadableContent(dl.getConnection())) { - br.followConnection(true); - if (dl.getConnection().getResponseCode() == 403) { - throw new PluginException(LinkStatus.ERROR_TEMPORARILY_UNAVAILABLE, "Server error 403", 5 * 60 * 1000l); - } else if (dl.getConnection().getResponseCode() == 404) { - throw new PluginException(LinkStatus.ERROR_TEMPORARILY_UNAVAILABLE, "Server error 404", 5 * 60 * 1000l); - } - throw new PluginException(LinkStatus.ERROR_PLUGIN_DEFECT); - } + handleConnectionErrors(br, dl.getConnection()); dl.startDownload(); }