We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52722c7 commit eeefbffCopy full SHA for eeefbff
app-src/scripts/main/global-services/google-drive-sync-s.js
@@ -196,8 +196,6 @@
196
editable: true
197
})
198
.then((res) => {
199
- console.log(res);
200
- //this.config.syncFileName
201
this.data.backupDocId = res.data.id;
202
this.data.lastSyncToRemote = res.data.modifiedDate;
203
// also needs to be updated
@@ -339,7 +337,7 @@
339
337
this._load().then((loadRes) => {
340
338
this._import(loadRes);
341
defer.resolve(loadRes);
342
- });
+ }, defer.reject);
343
} else {
344
345
const lastModifiedRemote = loadRes.meta.modifiedDate;
@@ -348,7 +346,7 @@
348
346
349
347
350
}, defer.reject);
351
352
}
353
354
return defer.promise;
0 commit comments