chore(performance): Adds string parser for inline JS data & performacne profiler...
[plugin.video.netflix.git] / addon.py
index 80355f325cae0afd75221e2093d27df83384a3f9..712691684a57fe482145229083fe421fa30317ae 100644 (file)
--- 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:])