rssutils: don't gzdecode() stuff

This commit is contained in:
Andrew Dolgov 2018-12-21 17:52:41 +03:00
parent a5517fe857
commit eedd402807
1 changed files with 0 additions and 26 deletions

View File

@ -256,18 +256,6 @@ class RSSUtils {
FEED_FETCH_TIMEOUT,
0);
global $fetch_curl_used;
if (!$fetch_curl_used) {
$is_gzipped = RSSUtils::is_gzipped($feed_data);
if ($is_gzipped) {
$tmp = @gzdecode($feed_data);
if ($tmp) $feed_data = $tmp;
}
}
$feed_data = trim($feed_data);
$rss = new FeedParser($feed_data);
@ -434,20 +422,6 @@ class RSSUtils {
"last_modified" => $force_refetch ? "" : $stored_last_modified
]);
global $fetch_curl_used;
if (!$fetch_curl_used) {
$is_gzipped = RSSUtils::is_gzipped($feed_data);
Debug::log("is_gzipped: $is_gzipped", Debug::$LOG_VERBOSE);
if ($is_gzipped) {
$tmp = @gzdecode($feed_data);
if ($tmp) $feed_data = $tmp;
}
}
$feed_data = trim($feed_data);
Debug::log("fetch done.", Debug::$LOG_VERBOSE);