From 25542cdff32ca9f76051cc046092fdbad1bdf92e Mon Sep 17 00:00:00 2001 From: Book Pauk Date: Sun, 24 Mar 2019 11:44:15 +0700 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D1=8F=20=D0=B1=D0=B0=D0=B3=D0=BE=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/components/Reader/ServerStorage/ServerStorage.vue | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/client/components/Reader/ServerStorage/ServerStorage.vue b/client/components/Reader/ServerStorage/ServerStorage.vue index 8c3b7245..29a81c94 100644 --- a/client/components/Reader/ServerStorage/ServerStorage.vue +++ b/client/components/Reader/ServerStorage/ServerStorage.vue @@ -59,8 +59,6 @@ class ServerStorage extends Vue { } else { await this.serverStorageKeyChanged(); } - await this.currentProfileChanged(); - await this.loadRecent(); this.oldRecent = _.cloneDeep(bookManager.recent); this.oldRecentLast = _.cloneDeep(bookManager.recentLast) || {}; } finally { @@ -88,7 +86,8 @@ class ServerStorage extends Vue { await this.loadProfiles(force); this.checkCurrentProfile(); - await this.loadRecent(); + await this.currentProfileChanged(force); + await this.loadRecent(force); if (force) await this.saveRecent(); }