removed stupid console log showing redundant notifications

This commit is contained in:
Kadir Sekha 2018-03-07 14:59:52 +09:00
commit 06b5108133
2 changed files with 0 additions and 5 deletions

View file

@ -30,10 +30,6 @@ angular.module('copayApp.controllers').controller('activityController',
var notificationsAfterCheck = n.length;
var removedNotifications = notificationsBeforeCheck - notificationsAfterCheck;
if (notificationsBeforeCheck != notificationsAfterCheck) {
console.log("Found a redundant notification. Removed " + removedNotifications);
}
console.log(n);
$scope.fetchingNotifications = false;

View file

@ -289,7 +289,6 @@ angular.module('copayApp.controllers').controller('tabHomeController',
var removedNotifications = notificationsBeforeCheck - notificationsAfterCheck;
if (notificationsBeforeCheck != notificationsAfterCheck) {
console.log("Found a redundant notification. Removed " + removedNotifications);
total = total - removedNotifications;
}