From 792703f8b6d365df2b0749ae6d6cfc9fd9e98e54 Mon Sep 17 00:00:00 2001 From: fyears Date: Thu, 30 Dec 2021 01:30:53 +0800 Subject: [PATCH] fix progress count --- src/main.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.ts b/src/main.ts index ebc1d60..d99d81e 100644 --- a/src/main.ts +++ b/src/main.ts @@ -219,11 +219,11 @@ export default class RemotelySavePlugin extends Plugin { try { //console.log(`huh ${this.settings.password}`) new Notice( - `1/6 Remotely Save Sync Preparing (${this.settings.serviceType})` + `1/7 Remotely Save Sync Preparing (${this.settings.serviceType})` ); this.syncStatus = "preparing"; - new Notice("2/6 Starting to fetch remote meta data."); + new Notice("2/7 Starting to fetch remote meta data."); this.syncStatus = "getting_remote_meta"; const self = this; const client = new RemoteClient( @@ -238,7 +238,7 @@ export default class RemotelySavePlugin extends Plugin { const remoteRsp = await client.listFromRemote(); // console.log(remoteRsp); - new Notice("3/6 Starting to fetch local meta data."); + new Notice("3/7 Starting to fetch local meta data."); this.syncStatus = "getting_local_meta"; const local = this.app.vault.getAllLoadedFiles(); const localHistory = await loadDeleteRenameHistoryTable(this.db);