Remove all-numeric usernames condition
- False negatives aren't recoverable
This commit is contained in:
parent
1321a52f15
commit
f409bd7034
|
@ -529,12 +529,7 @@ class Probe
|
||||||
$path_parts = explode('/', trim($parts['path'] ?? '', '/'));
|
$path_parts = explode('/', trim($parts['path'] ?? '', '/'));
|
||||||
if (!empty($path_parts)) {
|
if (!empty($path_parts)) {
|
||||||
$nick = ltrim(end($path_parts), '@');
|
$nick = ltrim(end($path_parts), '@');
|
||||||
// When the last part of the URI is numeric then it is most likely an ID and not a nick name
|
$addr = $nick . '@' . $host;
|
||||||
if (!is_numeric($nick)) {
|
|
||||||
$addr = $nick . '@' . $host;
|
|
||||||
} else {
|
|
||||||
$nick = '';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$webfinger = self::getWebfinger($parts['scheme'] . '://' . $host . self::WEBFINGER, 'application/jrd+json', $uri, $addr);
|
$webfinger = self::getWebfinger($parts['scheme'] . '://' . $host . self::WEBFINGER, 'application/jrd+json', $uri, $addr);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user