fix(my-list): Fixes that not all videos have been shown on the list
[plugin.video.netflix.git] / resources / lib / NetflixSession.py
index 6755c66694ba40a8045cb08b01bd9bfa107d152a..3743ed2004fe0590f7e40b143319eddff316afd2 100644 (file)
@@ -24,10 +24,10 @@ class NetflixSession:
 
     urls = {
         'login': '/login',
-        'browse': '/browse',
+        'browse': '/profiles/manage',
         'video_list_ids': '/preflight',
         'shakti': '/pathEvaluator',
-        'profiles':  '/browse',
+        'profiles':  '/profiles/manage',
         'switch_profiles': '/profiles/switch',
         'adult_pin': '/pin/service',
         'metadata': '/metadata',
@@ -1563,8 +1563,6 @@ class NetflixSession:
         })
 
         params = {
-            'withSize': True,
-            'materialize': True,
             'model': self.user_data['gpsModel']
         }
 
@@ -1919,6 +1917,7 @@ class NetflixSession:
         start = time()
         response = self.session.get(url=url, verify=self.verify_ssl, params=params)
         end = time()
+        print params
         self.log('[GET] Request for "' + url + '" took ' + str(end - start) + ' seconds')
         return response