This commit is contained in:
Half-Shot
2024-12-17 14:04:25 +00:00
parent 8688907bb6
commit 3a094342d3

View File

@@ -47,12 +47,13 @@ export default function useReactionsReader(rtcSession: MatrixRTCSession): {
); );
reactionsSubject$.current reactionsSubject$.current
.pipe(delay(REACTION_ACTIVE_TIME_MS)) .pipe(delay(REACTION_ACTIVE_TIME_MS + 50))
.subscribe((reactions) => { .subscribe((reactions) => {
const date = new Date(); const date = new Date();
const nextEntries = Object.fromEntries( const nextEntries = Object.fromEntries(
Object.entries(reactions).filter(([_, hr]) => hr.expireAfter < date), Object.entries(reactions).filter(([_, hr]) => hr.expireAfter < date),
); );
console.log("Filtering", nextEntries);
if (Object.keys(reactions).length === Object.keys(nextEntries).length) { if (Object.keys(reactions).length === Object.keys(nextEntries).length) {
return; return;
} }