From: Sebastian Golasch Date: Thu, 9 Mar 2017 09:36:23 +0000 (+0100) Subject: chore(perf): Remove an unecessary request when entering a profile X-Git-Url: http://git.code-monkey.de/?p=plugin.video.netflix.git;a=commitdiff_plain;h=90f1fed6e5a2422235eb412d202da1f98de16149 chore(perf): Remove an unecessary request when entering a profile --- diff --git a/resources/lib/NetflixSession.py b/resources/lib/NetflixSession.py index d3334bc..6755c66 100644 --- a/resources/lib/NetflixSession.py +++ b/resources/lib/NetflixSession.py @@ -280,14 +280,9 @@ class NetflixSession: if response.status_code != 200: return False - # fetch the index page again, so that we can fetch the corresponding user data - browse_response = self._session_get(component='browse') - only_script_tags = SoupStrainer('script') - browse_soup = BeautifulSoup(browse_response.text, 'html.parser', parse_only=only_script_tags) account_hash = self._generate_account_hash(account=account) self.user_data['guid'] = profile_id; - self._save_data(filename=self.data_path + '_' + account_hash) - return True + return self._save_data(filename=self.data_path + '_' + account_hash) def send_adult_pin (self, pin): """Send the adult pin to Netflix in case an adult rated video requests it