mirror of
https://github.com/immich-app/immich.git
synced 2025-11-26 08:15:17 -05:00
fix: null dereference when canceling bucket in album (#23924)
This commit is contained in:
parent
69880ee165
commit
d64c339b4f
@ -38,6 +38,9 @@ export async function loadFromTimeBuckets(
|
|||||||
},
|
},
|
||||||
{ signal },
|
{ signal },
|
||||||
);
|
);
|
||||||
|
if (!albumAssets) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
for (const id of albumAssets.id) {
|
for (const id of albumAssets.id) {
|
||||||
timelineManager.albumAssets.add(id);
|
timelineManager.albumAssets.add(id);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user