Merge pull request #2150 from annando/1512-probe-url-caching

probe_url: Only cache successful results
This commit is contained in:
Tobias Diekershoff 2015-12-06 12:22:43 +01:00
commit 2dc0b2b731
1 changed files with 1 additions and 1 deletions

View File

@ -831,7 +831,7 @@ function probe_url($url, $mode = PROBE_NORMAL, $level = 1) {
} }
// Only store into the cache if the value seems to be valid // Only store into the cache if the value seems to be valid
if ($result['network'] != NETWORK_FEED) if ($result['network'] != NETWORK_PHANTOM)
Cache::set("probe_url:".$mode.":".$url,serialize($result), CACHE_DAY); Cache::set("probe_url:".$mode.":".$url,serialize($result), CACHE_DAY);
return $result; return $result;