fix: remove unnecessary async from catch handler

The catch callback no longer contains any await expressions
after the previous refactor removed await on sync view methods.

Change-Id: I054c50fe209aba0e925bd1838896228bce686841
This commit is contained in:
wujunchen 2026-04-26 21:12:16 +08:00
parent da535cb064
commit 6aba90bfd3
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View file

@ -539,7 +539,7 @@ class ParallelReaderPlugin extends Plugin {
}),
);
})
.catch(async (e) => {
.catch((e) => {
if (e instanceof GenerationJobAlreadyRunningError) {
new Notice(e.message);
return;