Refactor Notification BIG

This commit is contained in:
alma 2026-01-06 20:11:58 +01:00
parent 015bb3b3eb
commit 0394a77e49

View File

@ -504,8 +504,8 @@ export class LeantimeAdapter implements NotificationAdapter {
}; };
// Process notifications in batches // Process notifications in batches
const notificationIds = unreadNotifications const notificationIds: number[] = unreadNotifications
.map((n: { id: number | string; sourceId: string }) => { .map((n: { id: number | string; sourceId: string }): number | null => {
const id = typeof n.id === 'number' ? n.id : parseInt(String(n.id || n.sourceId)); const id = typeof n.id === 'number' ? n.id : parseInt(String(n.id || n.sourceId));
return isNaN(id) ? null : id; return isNaN(id) ? null : id;
}) })