This commit is contained in:
thatonecalculator 2022-12-01 23:19:37 -08:00 committed by Gitea
parent 555cf6c6c7
commit a9eb2ccc2d
2 changed files with 5 additions and 6 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "calckey", "name": "calckey",
"version": "12.119.0-calc.18-rc.8", "version": "12.119.0-calc.18-rc.9",
"codename": "aqua", "codename": "aqua",
"repository": { "repository": {
"type": "git", "type": "git",

View File

@ -53,7 +53,7 @@ useTooltip(buttonRef, async (showing) => {
}, {}, 'closed'); }, {}, 'closed');
}); });
const renote = (viaKeyboard = false, ev?: MouseEvent) => { const renote = async (viaKeyboard = false, ev?: MouseEvent) => {
pleaseLogin(); pleaseLogin();
let buttonActions = [{ let buttonActions = [{
text: i18n.ts.renote, text: i18n.ts.renote,
@ -72,13 +72,12 @@ const renote = (viaKeyboard = false, ev?: MouseEvent) => {
} }
}, },
}]; }];
let users; const renotes = await os.api('notes/renotes', {
os.api('notes/renotes', {
noteId: props.note.id, noteId: props.note.id,
limit: 11, limit: 11,
}).then((renotes) => {
users = renotes.map(x => x.user);
}); });
const users = renotes.map(x => x.user);
const hasRenotedBefore = users.includes($i); const hasRenotedBefore = users.includes($i);
if (hasRenotedBefore) { if (hasRenotedBefore) {