fix lookup instance

This commit is contained in:
ThatOneCalculator 2023-04-11 10:32:51 -07:00
parent 2d03d61ac8
commit 07b9e17665
No known key found for this signature in database
GPG Key ID: 8703CACD01000000
1 changed files with 1 additions and 3 deletions

View File

@ -9,9 +9,7 @@ export async function lookupInstance() {
os.api( os.api(
"federation/show-instance", "federation/show-instance",
q.startsWith("http://") || q.startsWith("https://") q.startsWith("http://") || q.startsWith("https://") ? { host: q.replace("https://", "") } : { host: q }
? { url: q.trim() }
: { fileId: q.trim() },
) )
.then((instance) => { .then((instance) => {
os.pageWindow(`/instance-info/${instance.host}`); os.pageWindow(`/instance-info/${instance.host}`);