Do not make notifications persistent

This commit is contained in:
Johannes Zellner
2019-01-08 12:41:52 +01:00
parent 38cb2201a9
commit f1663d0fbf

View File

@@ -99,7 +99,7 @@ angular.module('Application').controller('MainController', ['$scope', '$route',
$scope.notifications = results;
results.forEach(function (n) {
Client.notify(n.title, n.message, true /* persistent */, 'info', n.action);
Client.notify(n.title, n.message, false, 'info', n.action);
});
});
}