From 6f1987f5df8a322437aab8f37ffcbd1a70a6be20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Baz=C3=A1n?= Date: Tue, 23 Feb 2016 12:23:58 -0300 Subject: [PATCH] fix toast message --- src/js/controllers/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/controllers/index.js b/src/js/controllers/index.js index 2a25d126e..07611f666 100644 --- a/src/js/controllers/index.js +++ b/src/js/controllers/index.js @@ -975,7 +975,7 @@ angular.module('copayApp.controllers').controller('indexController', function($r self.txHistoryToList = filter(self.search).slice(0, self.historyShowLimit); if (isCordova) - window.plugins.toast.showShortBottom(gettextCatalog.getString('Matches: ' + self.txHistoryToList.length)); + window.plugins.toast.showShortBottom(gettextCatalog.getString('Matches: ' + self.result.length)); $timeout(function() { $rootScope.$apply();