Skip to content

Commit

Permalink
Fix normalizeAsctbData
Browse files Browse the repository at this point in the history
  • Loading branch information
bherr2 committed Jun 12, 2024
1 parent cc29ecd commit 47df47d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/normalization/normalize-asct-b.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ export function normalizeAsctbMetadata(context) {
}

export async function normalizeAsctbData(context) {
const rawData = await getRawData(context);
const normalizedData = normalizeData(context, rawData).data;
const rawData = (await getRawData(context)).data;
const normalizedData = normalizeData(context, rawData);
writeNormalizedData(context, normalizedData);
}

Expand Down

0 comments on commit 47df47d

Please sign in to comment.