diff --git a/js/controllers/settings.js b/js/controllers/settings.js index 90128de34..60d1749d1 100644 --- a/js/controllers/settings.js +++ b/js/controllers/settings.js @@ -74,6 +74,8 @@ angular.module('copayApp.controllers').controller('SettingsController', unitToSatoshi: $scope.selectedUnit.value, })); - window.location.reload(); + // Go home reloading the application + var hashIndex = window.location.href.indexOf('#!/'); + window.location = window.location.href.substr(0, hashIndex); }; });