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

This commit is contained in:
Maurice Parker 2020-10-17 20:00:58 -05:00
parent 8ab762c860
commit 3431a45d22

View File

@ -110,11 +110,6 @@ extension LocalAccountRefresher: DownloadSessionDelegate {
return false
}
if data.count > 4096 {
let parserData = ParserData(url: feed.url, data: data)
return FeedParser.mightBeAbleToParseBasedOnPartialData(parserData)
}
return true
}