This commit is contained in:
Girish Ramakrishnan
2020-10-09 17:14:56 -07:00
parent 5481a65ab1
commit 10aded5de4

View File

@@ -89,7 +89,7 @@ angular.module('Application').controller('NotificationsController', ['$scope', '
async.eachLimit($scope.notifications.notifications, 20, function (notification, callback) {
if (notification.acknowledged) return callback();
$scope.notifications.ackOne(notification, callback);
$scope.notifications.ackOne(notification.id, callback);
}, function (error) {
if (error) console.error(error);