diff --git a/cli/python/app.py b/cli/python/app.py index dc8e55d..09eef83 100644 --- a/cli/python/app.py +++ b/cli/python/app.py @@ -9,7 +9,7 @@ import time def listnotes(filter = ""): matching = [] for i in reversed(range(len(data))): - if filter in data[i]["title"]: + if filter.lower() in data[i]["title"].lower(): print("[" + str(i) + "]", data[i]["title"]) matching.append(data[i]) return matching