mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-07-14 16:04:33 +00:00
fix unknownUrl value
This commit is contained in:
parent
3a3f8770d9
commit
e167ddd72d
1 changed files with 1 additions and 1 deletions
|
@ -222,7 +222,7 @@ function refresh(withFetch = false) {
|
||||||
return res.json();
|
return res.json();
|
||||||
})
|
})
|
||||||
.then(async (info: SummalyResult & { haveNoteLocally?: boolean } | null) => {
|
.then(async (info: SummalyResult & { haveNoteLocally?: boolean } | null) => {
|
||||||
unknownUrl.value = info != null;
|
unknownUrl.value = info == null;
|
||||||
title.value = info?.title ?? null;
|
title.value = info?.title ?? null;
|
||||||
description.value = info?.description ?? null;
|
description.value = info?.description ?? null;
|
||||||
thumbnail.value = info?.thumbnail ?? null;
|
thumbnail.value = info?.thumbnail ?? null;
|
||||||
|
|
Loading…
Add table
Reference in a new issue