]> git.mxchange.org Git - friendica.git/blobdiff - src/Protocol/DFRN.php
Remove url caching, locking cleanup
[friendica.git] / src / Protocol / DFRN.php
index 96b1450aedaceb282d3b8732c2482be04a4bc812..2956e7bfc8b3acc9d649c5d106173aaaed9eea77 100644 (file)
@@ -2878,14 +2878,13 @@ class DFRN
         * Checks if the given contact url does support DFRN
         *
         * @param string  $url    profile url
-        * @param boolean $update Update the profile
         * @return boolean
         * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         * @throws \ImagickException
         */
-       public static function isSupportedByContactUrl($url, $update = false)
+       public static function isSupportedByContactUrl($url)
        {
-               $probe = Probe::uri($url, Protocol::DFRN, 0, !$update);
+               $probe = Probe::uri($url, Protocol::DFRN);
                return $probe['network'] == Protocol::DFRN;
        }
 }