Remove test for URL's that might not be feeds since it is running on the main thread. Issue #2498

This commit is contained in:
Maurice Parker 2020-10-17 19:41:37 -05:00
parent 8007ff2c70
commit dba253601e
1 changed files with 0 additions and 10 deletions

View File

@ -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
}