diff --git a/Frameworks/Account/LocalAccount/LocalAccountRefresher.swift b/Frameworks/Account/LocalAccount/LocalAccountRefresher.swift index cc39bf82e..3fb364410 100644 --- a/Frameworks/Account/LocalAccount/LocalAccountRefresher.swift +++ b/Frameworks/Account/LocalAccount/LocalAccountRefresher.swift @@ -135,16 +135,6 @@ extension LocalAccountRefresher: DownloadSessionDelegate { return false } - if data.count > 4096 { - let parserData = ParserData(url: feed.url, data: data) - if FeedParser.mightBeAbleToParseBasedOnPartialData(parserData) { - return true - } else { - delegate?.localAccountRefresher(self, requestCompletedFor: feed) - return false - } - } - return true }