Skip to content

Commit

Permalink
fix(core): Fix importer asset channel handling (vendure-ecommerce#2801)
Browse files Browse the repository at this point in the history
  • Loading branch information
mschipperheyn authored Apr 22, 2024
1 parent 277c17e commit c7a28b7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export class Populator {
for (const collectionDef of data.collections) {
const parent = collectionDef.parentName && collectionMap.get(collectionDef.parentName);
const parentId = parent ? parent.id.toString() : undefined;
const { assets } = await this.assetImporter.getAssets(collectionDef.assetPaths || []);
const { assets } = await this.assetImporter.getAssets(collectionDef.assetPaths || [], ctx);
let filters: ConfigurableOperationInput[] = [];
try {
filters = (collectionDef.filters || []).map(filter =>
Expand Down

0 comments on commit c7a28b7

Please sign in to comment.