mirror of
https://github.com/immich-app/immich.git
synced 2025-12-17 17:23:20 +03:00
ci: browser compatibility linting (#19132)
This commit is contained in:
@@ -470,7 +470,11 @@ export class TimelineManager {
|
||||
},
|
||||
{ order: this.#options.order ?? AssetOrder.Desc },
|
||||
);
|
||||
return unprocessedIds.values().map((id) => lookup.get(id)!);
|
||||
const result: TimelineAsset[] = [];
|
||||
for (const id of unprocessedIds.values()) {
|
||||
result.push(lookup.get(id)!);
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
removeAssets(ids: string[]) {
|
||||
|
||||
Reference in New Issue
Block a user