mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-24 04:46:43 -06:00
frontend: removed renote counts auto increase
This commit is contained in:
parent
be80b377cc
commit
5a3f3862f8
1 changed files with 0 additions and 3 deletions
|
@ -576,7 +576,6 @@ export function getRenoteMenu(props: {
|
|||
channelId: appearNote.channelId,
|
||||
}).then(() => {
|
||||
os.toast(i18n.ts.renoted);
|
||||
appearNote.renoteCount = (appearNote.renoteCount || 0) + 1;
|
||||
});
|
||||
}
|
||||
},
|
||||
|
@ -625,7 +624,6 @@ export function getRenoteMenu(props: {
|
|||
renoteId: appearNote.id,
|
||||
}).then(() => {
|
||||
os.toast(i18n.ts.renoted);
|
||||
appearNote.renoteCount = (appearNote.renoteCount || 0) + 1;
|
||||
});
|
||||
}
|
||||
},
|
||||
|
@ -667,7 +665,6 @@ export function getRenoteMenu(props: {
|
|||
channelId: channel.id,
|
||||
}).then(() => {
|
||||
os.toast(i18n.tsx.renotedToX({ name: channel.name }));
|
||||
appearNote.renoteCount = (appearNote.renoteCount || 0) + 1;
|
||||
});
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue