This commit is contained in:
thatonecalculator 2022-12-01 23:19:37 -08:00
parent e649a465ed
commit 25fa34d97c
2 changed files with 5 additions and 6 deletions

View file

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

View file

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