mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-12 00:06:07 -07:00
Remove code to update view offset for every websocket event
This commit is contained in:
parent
af3944734f
commit
40559471cf
1 changed files with 0 additions and 6 deletions
|
@ -228,7 +228,6 @@ class ActivityHandler(object):
|
||||||
this_state = self.timeline['state']
|
this_state = self.timeline['state']
|
||||||
this_rating_key = str(self.timeline['ratingKey'])
|
this_rating_key = str(self.timeline['ratingKey'])
|
||||||
this_key = self.timeline['key']
|
this_key = self.timeline['key']
|
||||||
this_view_offset = self.timeline['viewOffset']
|
|
||||||
|
|
||||||
# Get the live tv session uuid
|
# Get the live tv session uuid
|
||||||
this_live_uuid = this_key.split('/')[-1] if this_key.startswith('/livetv/sessions') else None
|
this_live_uuid = this_key.split('/')[-1] if this_key.startswith('/livetv/sessions') else None
|
||||||
|
@ -242,7 +241,6 @@ class ActivityHandler(object):
|
||||||
last_state = db_session['state']
|
last_state = db_session['state']
|
||||||
last_rating_key = str(db_session['rating_key'])
|
last_rating_key = str(db_session['rating_key'])
|
||||||
last_live_uuid = db_session['live_uuid']
|
last_live_uuid = db_session['live_uuid']
|
||||||
last_view_offset = db_session['view_offset']
|
|
||||||
|
|
||||||
# Make sure the same item is being played
|
# Make sure the same item is being played
|
||||||
if this_rating_key == last_rating_key or this_live_uuid == last_live_uuid:
|
if this_rating_key == last_rating_key or this_live_uuid == last_live_uuid:
|
||||||
|
@ -253,10 +251,6 @@ class ActivityHandler(object):
|
||||||
if int(time.time()) - db_session['stopped'] > 60:
|
if int(time.time()) - db_session['stopped'] > 60:
|
||||||
self.update_db_session()
|
self.update_db_session()
|
||||||
|
|
||||||
# Update db session when view offset changes
|
|
||||||
if this_view_offset != last_view_offset:
|
|
||||||
self.update_db_session()
|
|
||||||
|
|
||||||
# Start our state checks
|
# Start our state checks
|
||||||
if this_state != last_state:
|
if this_state != last_state:
|
||||||
if this_state == 'paused':
|
if this_state == 'paused':
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue