Skip to content

Commit

Permalink
fixed stray "INVALID COL" appearing
Browse files Browse the repository at this point in the history
  • Loading branch information
nleanba committed Dec 20, 2024
1 parent c258f94 commit f9d0b18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SynonymGroup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ LIMIT 500`;
}

await Promise.all(
authorizedNames.map(async (n) => {
authorizedNames.filter((n) => n.colURI).map(async (n) => {
const [acceptedColURI, promises] = await this.getAcceptedCol(
n.colURI!,
name,
Expand Down

0 comments on commit f9d0b18

Please sign in to comment.