probe_url: Only cache successful results

This commit is contained in:
Michael Vogel 2015-12-06 12:15:31 +01:00
parent 6a05112d98
commit 7c7baa77d6

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
if ($result['network'] != NETWORK_FEED)
if ($result['network'] != NETWORK_PHANTOM)
Cache::set("probe_url:".$mode.":".$url,serialize($result), CACHE_DAY);
return $result;