Fix medium playlist items displaying incorrectly

This commit is contained in:
James Taylor 2019-07-06 19:26:07 -07:00
parent 64434b02ca
commit c0617670f7

View File

@ -197,7 +197,7 @@ def renderer_info(renderer, additional_info={}):
info.update(additional_info)
if type.startswith('compact') or type.startswith('playlist'):
if type.startswith('compact') or (type.startswith('playlist') and type != 'playlistRenderer'):
info['item_size'] = 'small'
else:
info['item_size'] = 'medium'