Fix parameters being ignored in youtu.be links

The parameters weren't passed to the underlying function
This commit is contained in:
James Taylor 2020-04-05 17:26:48 -07:00
parent 4d9d8cec6f
commit dd5c9a5d41

View File

@ -24,7 +24,10 @@ import re
def youtu_be(env, start_response):
id = env['PATH_INFO'][1:]
env['PATH_INFO'] = '/watch'
env['QUERY_STRING'] = 'v=' + id
if not env['QUERY_STRING']:
env['QUERY_STRING'] = 'v=' + id
else:
env['QUERY_STRING'] += '&v=' + id
yield from yt_app(env, start_response)
def proxy_site(env, start_response):