Commit 89088322 authored by nextime's avatar nextime

Fix a little typo

parent 7a0e7736
......@@ -533,7 +533,7 @@ class FFMpegProxyResource(VideoProxyResource):
force_input_codec=urllib.unquote(reqargs['icodec'][0])
direct = False
if 'direct' in reqargs:
urllib.unquote(reqargs['direct'][0]).lower() in ['1','true','yes','y','si']:
if urllib.unquote(reqargs['direct'][0]).lower() in ['1','true','yes','y','si']:
direct=True
self.audiouri = False
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment