Fix case-insensitive comparison bug

This commit is contained in:
rubenwardy 2020-03-28 18:15:15 +00:00
parent 3e07bed51b
commit 144ae69f5c
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ def list_all():
.filter(or_(*[func.lower(User.username) == name.lower().strip() for name in search.split(" ")])) \
.all()
authors = [(author.username, search.lower().replace(author.username, "")) for author in authors]
authors = [(author.username, search.lower().replace(author.username.lower(), "")) for author in authors]
topics = None
if qb.search and not query.has_next: