Fix error in bluesky addon

pull/1579/head
Art4 2024-11-29 22:36:05 +00:00
parent a6de4225c6
commit 5f2a9e9891
1 changed files with 1 additions and 1 deletions

View File

@ -1563,7 +1563,7 @@ function bluesky_get_uri_class(string $uri): ?stdClass
} }
$elements = explode(':', $uri); $elements = explode(':', $uri);
if (empty($elements) || ($elements[0] != 'at')) { if ($elements[0] !== 'at') {
$post = Post::selectFirstPost(['extid'], ['uri' => $uri]); $post = Post::selectFirstPost(['extid'], ['uri' => $uri]);
return bluesky_get_uri_class($post['extid'] ?? ''); return bluesky_get_uri_class($post['extid'] ?? '');
} }