diff --git a/src/js/routes.js b/src/js/routes.js index dce44e5a7..9f92325fc 100644 --- a/src/js/routes.js +++ b/src/js/routes.js @@ -1183,9 +1183,13 @@ angular.module('copayApp').config(function(historicLogProvider, $provide, $logPr 'notify': $state.current.name == 'starting' ? false : true }).then(function() { $ionicHistory.nextViewOptions({ - disableAnimate: true + disableAnimate: true, + historyRoot: true + }); + $state.transitionTo('tabs.home').then(function() { + // Clear history + $ionicHistory.clearHistory(); }); - $state.transitionTo('tabs.home'); }); }