Merge pull request #3649 from matiu/bug/scan-flag
fix backup flag from server
This commit is contained in:
commit
9f78d35bfb
2 changed files with 2 additions and 1 deletions
|
|
@ -177,6 +177,7 @@ module.exports = function(grunt) {
|
||||||
},
|
},
|
||||||
nodewebkit: {
|
nodewebkit: {
|
||||||
options: {
|
options: {
|
||||||
|
appName: 'Copay',
|
||||||
platforms: ['win', 'osx', 'linux'],
|
platforms: ['win', 'osx', 'linux'],
|
||||||
buildDir: './webkitbuilds',
|
buildDir: './webkitbuilds',
|
||||||
version: '0.12.2',
|
version: '0.12.2',
|
||||||
|
|
|
||||||
|
|
@ -305,7 +305,7 @@ angular.module('copayApp.controllers').controller('indexController', function($r
|
||||||
self.updateError = bwsError.msg(err, gettext('Could not update Wallet'));
|
self.updateError = bwsError.msg(err, gettext('Could not update Wallet'));
|
||||||
} else {
|
} else {
|
||||||
if (!opts.quiet)
|
if (!opts.quiet)
|
||||||
self.setOngoingProcess('scanning', ret.wallet.scanning);
|
self.setOngoingProcess('scanning', ret.wallet.scanStatus == 'running');
|
||||||
}
|
}
|
||||||
return cb(err, ret);
|
return cb(err, ret);
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue