Убрал устаревший код

This commit is contained in:
Book Pauk
2022-01-11 21:30:43 +07:00
parent 54bc662e43
commit d5404fd260
3 changed files with 7 additions and 72 deletions

View File

@@ -585,7 +585,11 @@ class Reader {
//сохранение в serverStorage
if (value) {
await utils.sleep(500);
await this.$refs.serverStorage.saveRecent(value);
try {
await this.$refs.serverStorage.saveRecent(value);
} catch (e) {
this.$root.notify.error(e.message);
}
}
}
}