Sort by inbox position to match phone after link
This commit is contained in:

committed by
Scott Nonnenberg

parent
1f5cb9e8af
commit
4830213a12
@@ -32,6 +32,7 @@
|
||||
initialize(options = {}) {
|
||||
window.readyForUpdates();
|
||||
|
||||
this.didLink = false;
|
||||
this.selectStep(Steps.SCAN_QR_CODE);
|
||||
this.connect();
|
||||
this.on('disconnected', this.reconnect);
|
||||
@@ -179,7 +180,10 @@
|
||||
|
||||
this.selectStep(Steps.PROGRESS_BAR);
|
||||
|
||||
const finish = () => resolve(name);
|
||||
const finish = () => {
|
||||
this.didLink = true;
|
||||
return resolve(name);
|
||||
};
|
||||
|
||||
// Delete all data from database unless we're in the middle
|
||||
// of a re-link, or we are finishing a light import. Without this,
|
||||
|
Reference in New Issue
Block a user