web: 移除Safari<14.5兼容处理

This commit is contained in:
Xwite
2023-05-13 11:33:31 +08:00
parent 3e873f23e7
commit 4529f23f78
4 changed files with 21 additions and 19 deletions
+1 -1
View File
@@ -100,7 +100,7 @@ export const useBookStore = defineStore("book", {
//保存进度到app
async saveBookProgress() {
if (!this.bookProgress) return Promise.resolve();
return API.saveBookProcess(this.bookProgress);
return API.saveBookProgress(this.bookProgress);
},
},
});