From: Michael Vogel Date: Fri, 8 Jul 2016 19:15:20 +0000 (+0200) Subject: Probing now has a Twitter detection. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=0ccb171449b8f045f073bca29b2fa4e701a45016;p=friendica.git Probing now has a Twitter detection. --- diff --git a/include/Probe.php b/include/Probe.php index 9dc2a370b9..0ce388dd7b 100644 --- a/include/Probe.php +++ b/include/Probe.php @@ -197,6 +197,9 @@ class Probe { $host = substr($uri,strpos($uri, '@') + 1); $nick = substr($uri,0, strpos($uri, '@')); + if (strpos($uri, '@twitter.com')) + return array("network" => NETWORK_TWITTER); + $lrdd = self::xrd($host); if (!$lrdd) return self::mail($uri, $uid); @@ -211,6 +214,10 @@ class Probe { // todo: Ports? $host = $parts["host"]; + + if ($host == 'twitter.com') + return array("network" => NETWORK_TWITTER); + $lrdd = self::xrd($host); $path_parts = explode("/", trim($parts["path"], "/"));