fix: simplify notification update logic by removing is_active flag from notification error update #56

Merged
fachba merged 1 commits from wisdom into main 2026-05-03 13:18:25 +00:00
Showing only changes of commit 452bfed2db - Show all commits

View File

@@ -172,7 +172,7 @@ class NotificationService {
if (!notification.is_read) { if (!notification.is_read) {
const updateStatus = await updateNotificationErrorDb( const updateStatus = await updateNotificationErrorDb(
notification_error_id, notification_error_id,
{ is_read: true, is_active: 0 } { is_read: true}
); );
if (!updateStatus) { if (!updateStatus) {