Merge pull request #2464 from annando/1604-scrape-cache

Don't cache account probing for empty networks
This commit is contained in:
Tobias Diekershoff 2016-04-19 16:48:01 +02:00
commit 31868af45d
1 changed files with 1 additions and 1 deletions

View File

@ -846,7 +846,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_PHANTOM) {
if (!in_array($result['network'], array(NETWORK_PHANTOM, ""))) {
Cache::set("probe_url:".$mode.":".$original_url,serialize($result), CACHE_DAY);
/// @todo temporary fix - we need a real contact update function that updates only changing fields