From 3431a45d22bdbf523aa7e6029449b5c80ecf5cc8 Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Sat, 17 Oct 2020 20:00:58 -0500 Subject: [PATCH] Remove test for URL's that might not be feeds since it is running on the main thread. Issue #2499 --- Frameworks/Account/LocalAccount/LocalAccountRefresher.swift | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Frameworks/Account/LocalAccount/LocalAccountRefresher.swift b/Frameworks/Account/LocalAccount/LocalAccountRefresher.swift index 870113d3d..3ed75b47a 100644 --- a/Frameworks/Account/LocalAccount/LocalAccountRefresher.swift +++ b/Frameworks/Account/LocalAccount/LocalAccountRefresher.swift @@ -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 }