Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
phfaist committed Dec 29, 2023
1 parent 9cc295c commit 67727ad
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion _zoodb_citations_cache/cache_compiled_citations.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion _zoodb_citations_cache/cache_downloaded_info.json

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion scripts/query_bib_references.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ async function runmain(args)
}
const code = eczoodb.objects.code[object_id];
const domains = eczoodb.code_parent_domains(code, { find_domain_id: args.domain });
if (domains.length !== 1 || domains[0] !== args.domain) {
//debug(`Code ${code.code_id}'s parent domain(s) are`, domains);
if (domains.length !== 1 || domains[0].domain_id !== args.domain) {
continue;
}
}
Expand Down

0 comments on commit 67727ad

Please sign in to comment.