From a91acab543cb2ed17672e46f5171af92172b5a28 Mon Sep 17 00:00:00 2001 From: semper Date: Mon, 7 Aug 2017 15:53:21 +0200 Subject: [PATCH] fix(navigation): fixes problems with play back files from library --- resources/lib/Navigation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- 2.30.2