Skip to content

Commit

Permalink
fixed typo in mcs
Browse files Browse the repository at this point in the history
  • Loading branch information
nleanba committed Mar 26, 2024
1 parent 6eb7151 commit 4069f7d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion SynonymGroup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ GROUP BY ?date ?title ?mc`;
materialCitations: [],
};
json.results.bindings.forEach((t) => {
if (!t.mc || !t.catalogNumber) return;
if (!t.mc || !t.catalogNumbers?.value) return;
const mc = {
"catalogNumber": t.catalogNumbers.value,
"collectionCode": t.collectionCodes?.value,
Expand Down
2 changes: 1 addition & 1 deletion npm-package/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@factsmission/synogroup",
"version": "2.0.3",
"version": "2.0.4",
"description": "",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 4069f7d

Please sign in to comment.