1
0
mirror of https://github.com/immich-app/immich.git synced 2024-11-24 08:52:28 +02:00

fix(web): prevent duplicate calls to time bucket endpoint (#7563)

This commit is contained in:
Mert 2024-03-01 14:16:07 -05:00 committed by GitHub
parent 670a3838a3
commit 8b02f18e99
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -207,7 +207,7 @@ export class AssetStore {
bucket.position = position;
if (bucket.assets.length > 0) {
if (bucket.assets.length > 0 || bucket.cancelToken) {
this.emit(false);
return;
}