From f1663d0fbf3b9e462d4e794ddf727c73dc8d45a8 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Tue, 8 Jan 2019 12:41:52 +0100 Subject: [PATCH] Do not make notifications persistent --- src/js/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/main.js b/src/js/main.js index cb0cefb18..692d1e83c 100644 --- a/src/js/main.js +++ b/src/js/main.js @@ -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); }); }); }