diff --git a/src/calibre/library/database2.py b/src/calibre/library/database2.py index 730ca364d5..3550253ffa 100644 --- a/src/calibre/library/database2.py +++ b/src/calibre/library/database2.py @@ -198,7 +198,7 @@ class ResultCache(SearchQueryParser): query = query.decode('utf-8') if location in ('tag', 'author', 'format'): location += 's' - all = ('title', 'authors', 'publisher', 'tags', 'comments', 'series', 'formats') + all = ('title', 'authors', 'publisher', 'tags', 'comments', 'series', 'formats', 'isbn') MAP = {} for x in all: MAP[x] = FIELD_MAP[x]