enhance(client): 一度見たノートのRenoteは省略して表示するように

Resolve #1792
This commit is contained in:
syuilo
2023-02-11 09:41:54 +09:00
parent 9351fb9617
commit 8bd2d6328a
5 changed files with 59 additions and 9 deletions

View File

@@ -540,3 +540,9 @@ export function checkExistence(fileData: ArrayBuffer): Promise<any> {
});
});
}*/
export const shownNoteIds = new Set();
window.setInterval(() => {
shownNoteIds.clear();
}, 1000 * 60 * 5);