diff options
author | Bryan Newbold <bnewbold@archive.org> | 2020-08-06 13:57:16 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2020-08-06 13:57:16 -0700 |
commit | 2502d5affdd097bf52073b393cdb97285d023e5d (patch) | |
tree | 6c209911151fd71d1a7af1ed227dbef40825210b | |
parent | 3e33a40f7affc7fc524e7454bea9976186882a84 (diff) | |
download | fatcat-scholar-2502d5affdd097bf52073b393cdb97285d023e5d.tar.gz fatcat-scholar-2502d5affdd097bf52073b393cdb97285d023e5d.zip |
remove 'title' from poor metadata scoring
-rw-r--r-- | fatcat_scholar/search.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fatcat_scholar/search.py b/fatcat_scholar/search.py index 7558db1..edff907 100644 --- a/fatcat_scholar/search.py +++ b/fatcat_scholar/search.py @@ -190,7 +190,6 @@ def do_fulltext_search( should=[ # if these fields aren't set, metadata is poor. The more that do # not exist, the stronger the signal. - Q("bool", must_not=Q("exists", field="title")), Q("bool", must_not=Q("exists", field="year")), Q("bool", must_not=Q("exists", field="type")), Q("bool", must_not=Q("exists", field="stage")), |