fix: null dereference when canceling bucket in album (#23924)
parent
69880ee165
commit
d64c339b4f
|
|
@ -38,6 +38,9 @@ export async function loadFromTimeBuckets(
|
|||
},
|
||||
{ signal },
|
||||
);
|
||||
if (!albumAssets) {
|
||||
return;
|
||||
}
|
||||
for (const id of albumAssets.id) {
|
||||
timelineManager.albumAssets.add(id);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue