1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-30 23:44:55 +02:00

Various changes

This commit is contained in:
Laurent Cozic
2017-07-07 23:25:03 +01:00
parent e0664167eb
commit 38c9d49cdb
29 changed files with 108 additions and 185 deletions

@ -121,6 +121,8 @@ class Synchronizer {
deleteRemote: 0,
itemConflict: 0,
noteConflict: 0,
state: this.state(),
};
try {
@ -369,12 +371,13 @@ class Synchronizer {
throw error;
}
options.onProgress(report);
this.logger().info('Synchronization complete [' + synchronizationId + ']:');
await this.logSyncSummary(report);
this.state_ = 'idle';
report.state = this.state();
options.onProgress(report);
}
}