mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
chore: suppress abort errors (#7120)
* chore: suppress abort errors * chore: return if aborted * chore: linting
This commit is contained in:
parent
747df0ae86
commit
b823dfffdc
2 changed files with 6 additions and 3 deletions
|
|
@ -232,6 +232,10 @@ export class AssetStore {
|
|||
}
|
||||
}
|
||||
|
||||
if (bucket.cancelToken.signal.aborted) {
|
||||
return;
|
||||
}
|
||||
|
||||
bucket.assets = assets;
|
||||
|
||||
this.emit(true);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue