mirror of https://gitlab.com/bashrc2/epicyon
Also search for lower case
parent
09d63088f0
commit
4a265c91c3
|
@ -591,6 +591,10 @@ def htmlHashtagSearch(nickname: str, domain: str, port: int,
|
||||||
hashtag = hashtag[1:]
|
hashtag = hashtag[1:]
|
||||||
hashtag = urllib.parse.unquote(hashtag)
|
hashtag = urllib.parse.unquote(hashtag)
|
||||||
hashtagIndexFile = baseDir + '/tags/' + hashtag + '.txt'
|
hashtagIndexFile = baseDir + '/tags/' + hashtag + '.txt'
|
||||||
|
if not os.path.isfile(hashtagIndexFile):
|
||||||
|
if hashtag != hashtag.lower():
|
||||||
|
hashtag = hashtag.lower()
|
||||||
|
hashtagIndexFile = baseDir + '/tags/' + hashtag + '.txt'
|
||||||
if not os.path.isfile(hashtagIndexFile):
|
if not os.path.isfile(hashtagIndexFile):
|
||||||
print('WARN: hashtag file not found ' + hashtagIndexFile)
|
print('WARN: hashtag file not found ' + hashtagIndexFile)
|
||||||
return None
|
return None
|
||||||
|
|
Loading…
Reference in New Issue