From: semper Date: Mon, 7 Aug 2017 13:53:21 +0000 (+0200) Subject: fix(navigation): fixes problems with play back files from library X-Git-Url: http://git.code-monkey.de/?p=plugin.video.netflix.git;a=commitdiff_plain;h=a91acab543cb2ed17672e46f5171af92172b5a28;hp=9b30d2941ef2be899db0070a616cf5355e165665 fix(navigation): fixes problems with play back files from library --- diff --git a/resources/lib/Navigation.py b/resources/lib/Navigation.py index e233c0b..ea6e81b 100644 --- a/resources/lib/Navigation.py +++ b/resources/lib/Navigation.py @@ -106,7 +106,7 @@ class Navigation: # display the lists (recommendations, genres, etc.) return self.show_user_list(type=params['type']) elif params['action'] == 'play_video': - self.play_video(video_id=params['video_id'], start_offset=params.get('start_offset', -1), infoLabels=params['infoLabels']) + self.play_video(video_id=params['video_id'], start_offset=params.get('start_offset', -1), infoLabels=params.get('infoLabels', {})) elif params['action'] == 'user-items' and params['type'] == 'search': # if the user requested a search, ask for the term term = self.kodi_helper.show_search_term_dialog()