1
0
Fork 1
mirror of https://example.com synced 2024-11-22 23:26:39 +09:00

fix: null error in renote button

This commit is contained in:
naskya 2023-10-19 14:48:53 +09:00
parent 9a415f9826
commit ffaccde714
Signed by: naskya
GPG key ID: 164DFF24E2D40139

View file

@ -73,13 +73,16 @@ useTooltip(buttonRef, async (showing) => {
}); });
const hasRenotedBefore = ref(false); const hasRenotedBefore = ref(false);
os.api("notes/renotes", {
noteId: props.note.id, if ($i != null) {
userId: $i.id, os.api("notes/renotes", {
limit: 1, noteId: props.note.id,
}).then((res) => { userId: $i.id,
hasRenotedBefore.value = res.length > 0; limit: 1,
}); }).then((res) => {
hasRenotedBefore.value = res.length > 0;
});
}
const renote = (viaKeyboard = false, ev?: MouseEvent) => { const renote = (viaKeyboard = false, ev?: MouseEvent) => {
pleaseLogin(); pleaseLogin();