mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-07 21:51:14 -07:00
Cast section_id to int in websocket timeline data
This commit is contained in:
parent
65e9e2b680
commit
a44709a43d
1 changed files with 1 additions and 1 deletions
|
@ -385,7 +385,7 @@ class TimelineHandler(object):
|
|||
identifier = self.timeline.get('identifier')
|
||||
state_type = self.timeline.get('state')
|
||||
media_type = media_types.get(self.timeline.get('type'))
|
||||
section_id = self.timeline.get('sectionID', 0)
|
||||
section_id = helpers.cast_to_int(self.timeline.get('sectionID', 0))
|
||||
title = self.timeline.get('title', 'Unknown')
|
||||
metadata_state = self.timeline.get('metadataState')
|
||||
media_state = self.timeline.get('mediaState')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue