Skip to content

Commit

Permalink
Fix for workaround -- pushing was broken in auto mode. D'oh! Reported by
Browse files Browse the repository at this point in the history
"spoole100".
  • Loading branch information
wmcbrine committed Mar 25, 2015
1 parent d60af07 commit 1555219
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/video/video.py
Expand Up @@ -419,7 +419,7 @@ def QueryContainer(self, handler, query):
force_alpha = container.getboolean('force_alpha')
ar = container.get('allow_recurse', 'auto').lower()
if ar == 'auto':
allow_recurse = tsn[0] < '7'
allow_recurse = not tsn or tsn[0] < '7'
else:
allow_recurse = ar in ('1', 'yes', 'true', 'on')
use_html = query.get('Format', [''])[0].lower() == 'text/html'
Expand Down

0 comments on commit 1555219

Please sign in to comment.