X-Git-Url: http://git.code-monkey.de/?p=plugin.video.netflix.git;a=blobdiff_plain;f=addon.py;h=712691684a57fe482145229083fe421fa30317ae;hp=80355f325cae0afd75221e2093d27df83384a3f9;hb=9616c8fc595d3b3bf2fe379febeb2f498e8001d6;hpb=a06f8e46152bf158e13ca3c8109d4bed315c6745 diff --git a/addon.py b/addon.py index 80355f3..7126916 100644 --- a/addon.py +++ b/addon.py @@ -30,10 +30,10 @@ kodi_helper = KodiHelper( netflix_session = NetflixSession( cookie_path=kodi_helper.cookie_path, data_path=kodi_helper.data_path, + verify_ssl=kodi_helper.get_ssl_verification_setting(), log_fn=kodi_helper.log ) library = Library( - base_url=base_url, root_folder=kodi_helper.base_data_path, library_settings=kodi_helper.get_custom_library_settings(), log_fn=kodi_helper.log @@ -50,4 +50,5 @@ kodi_helper.set_library(library=library) if __name__ == '__main__': # Call the router function and pass the plugin call parameters to it. # We use string slicing to trim the leading '?' from the plugin call paramstring + kodi_helper.log('started') navigation.router(paramstring=sys.argv[2][1:])