true lower case compare
This commit is contained in:
parent
0f093ef64e
commit
8ac9332d6c
|
@ -70,7 +70,7 @@ def show_random_ep():
|
|||
@app.route("/search")
|
||||
def search():
|
||||
retEpisodes = []
|
||||
term = request.args.get("q", "")
|
||||
term = request.args.get("q", "").lower()
|
||||
|
||||
try:
|
||||
assert term != ""
|
||||
|
|
Loading…
Reference in New Issue