1
0
Fork 1
mirror of https://example.com synced 2024-11-22 17:06:38 +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);
os.api("notes/renotes", {
if ($i != null) {
os.api("notes/renotes", {
noteId: props.note.id,
userId: $i.id,
limit: 1,
}).then((res) => {
}).then((res) => {
hasRenotedBefore.value = res.length > 0;
});
});
}
const renote = (viaKeyboard = false, ev?: MouseEvent) => {
pleaseLogin();