allow lookup / search for http URLs

This commit is contained in:
dakkar 2024-03-03 14:45:34 +00:00
parent 2e55108b6b
commit 96d8432b85
3 changed files with 3 additions and 3 deletions

View file

@ -85,7 +85,7 @@ async function search() {
if (query == null || query === '') return;
if (query.startsWith('https://')) {
if (query.startsWith('http://') || query.startsWith('https://')) {
const promise = misskeyApi('ap/show', {
uri: query,
});