Skip to content

Commit

Permalink
search bar content spacing fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DogukanUrker committed Jan 17, 2024
1 parent ebf69c2 commit 8816f6e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions routes/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

@searchBlueprint.route("/search/<query>", methods=["GET", "POST"])
def search(query):
query = query.replace("%20", " ")
queryNoWhiteSpace = query.replace("+", "")
query = query.replace("+", " ")
connection = sqlite3.connect(DB_USERS_ROOT)
Expand Down

0 comments on commit 8816f6e

Please sign in to comment.