Skip to content
This repository was archived by the owner on Feb 5, 2026. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pynps/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ def find(query):
else:
result = result + [item for item in system_database if
(item['System'] == system and item['Region'] in region and item['Type'] in types) and
(query.lower() in item['Name'].lower() or query.lower() in item['Title ID']) and
(query.lower() in item['Name'].lower() or query.lower() in item['Title ID'].lower()) and
(item['PKG direct link'] not in ["", "MISSING", None, "CART ONLY"])
]
except:
Expand Down