X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2FProbe.php;h=aa9f7d21df6eb858a9ddf0be5c083793a0b8a698;hb=d49325d177cf03b97df250ca3cb081421c541049;hp=d266a384e6f0ea38f967606929eba3a713de32fa;hpb=75a996c4e41a6739693195d362e300f0690d8418;p=friendica.git diff --git a/include/Probe.php b/include/Probe.php index d266a384e6..aa9f7d21df 100644 --- a/include/Probe.php +++ b/include/Probe.php @@ -217,7 +217,6 @@ class Probe { if ($cache) { $result = Cache::get("probe_url:".$network.":".$uri); if (!is_null($result)) { - $result = unserialize($result); return $result; } } @@ -257,7 +256,7 @@ class Probe { // Only store into the cache if the value seems to be valid if (!in_array($data['network'], array(NETWORK_PHANTOM, NETWORK_MAIL))) { - Cache::set("probe_url:".$network.":".$uri,serialize($data), CACHE_DAY); + Cache::set("probe_url:".$network.":".$uri, $data, CACHE_DAY); /// @todo temporary fix - we need a real contact update function that updates only changing fields /// The biggest problem is the avatar picture that could have a reduced image size.