Merge pull request #992 from MrPetovan/task/8517-probe-mobile-twitter
[twitter] Improve mobile profile URL probe
This commit is contained in:
commit
a078b08797
1 changed files with 2 additions and 2 deletions
|
@ -465,9 +465,9 @@ function twitter_probe_detect(App $a, array &$hookData)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (preg_match('=(.*)@twitter.com=i', $hookData['uri'], $matches)) {
|
if (preg_match('=([^@]+)@(?:mobile\.)?twitter\.com$=i', $hookData['uri'], $matches)) {
|
||||||
$nick = $matches[1];
|
$nick = $matches[1];
|
||||||
} elseif (preg_match('=https?://(?:mobile\.)?twitter.com/(.*)=i', $hookData['uri'], $matches)) {
|
} elseif (preg_match('=^https?://(?:mobile\.)?twitter\.com/(.+)=i', $hookData['uri'], $matches)) {
|
||||||
$nick = $matches[1];
|
$nick = $matches[1];
|
||||||
} else {
|
} else {
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue