Ignore case in history search

main
Bob Mottram 2020-04-11 14:38:28 +01:00
parent f2707d43ac
commit 6933692348
1 changed files with 2 additions and 2 deletions

View File

@ -741,7 +741,7 @@ def searchBoxPosts(baseDir: str, nickname: str, domain: str,
if not os.path.isdir(path):
print('SEARCH: directory does not exist ' + path)
return []
searchStr = searchStr.strip()
searchStr = searchStr.lower().strip()
if '+' in searchStr:
searchWords = searchStr.split('+')
@ -755,7 +755,7 @@ def searchBoxPosts(baseDir: str, nickname: str, domain: str,
for fname in fnames:
filePath = os.path.join(root, fname)
with open(filePath, 'r') as postFile:
data = postFile.read()
data = postFile.read().lower()
notFound = False
for keyword in searchWords: