Skip to content

Commit

Permalink
Merge pull request #44 from PikuZheng/patch-1
Browse files Browse the repository at this point in the history
fix spaces in urls
  • Loading branch information
manbearwiz authored Dec 4, 2020
2 parents 07bd923 + 18d7d54 commit fcc890e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion youtube-dl-server.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def q_size():

@app.route('/youtube-dl/q', method='POST')
def q_put():
url = request.forms.get("url")
url = request.forms.get("url").strip()
options = {
'format': request.forms.get("format")
}
Expand Down

0 comments on commit fcc890e

Please sign in to comment.