diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2021-08-06 12:06:18 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2021-08-06 12:06:19 -0700 |
commit | cf5a03d8803d660b69f781827c8bc0828ae7ca13 (patch) | |
tree | aa8f146fa8142237b70ad80b99e2d56b87ef0596 | |
parent | 7ef5bb7c04b6673af24e0371a7cffbe09ab61b02 (diff) | |
download | fatcat-cf5a03d8803d660b69f781827c8bc0828ae7ca13.tar.gz fatcat-cf5a03d8803d660b69f781827c8bc0828ae7ca13.zip |
refs: default to *not* consolidating works
We don't handle counts for consolidated refs yet, so just don't
consolidate. This should fix, eg, "Showing 1-18 of 19" type UX
confusion, with the trade-off that some works will be duplicated in
inbound ref tables.
-rw-r--r-- | python/fatcat_tools/references.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat_tools/references.py b/python/fatcat_tools/references.py index 496a46e1..3a2709a4 100644 --- a/python/fatcat_tools/references.py +++ b/python/fatcat_tools/references.py @@ -210,7 +210,7 @@ def get_inbound_refs( work_ident: Optional[str] = None, openlibrary_work: Optional[str] = None, url: Optional[str] = None, - consolidate_works: bool = True, + consolidate_works: bool = False, filter_stage: List[str] = [], sort: Optional[str] = None, limit: int = 25, |