mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-16 02:02:58 -07:00
Temporary fix for current activity resolution on PMS 1.7.x
This commit is contained in:
parent
ed2d34e979
commit
5147baab05
1 changed files with 4 additions and 4 deletions
|
@ -1186,8 +1186,8 @@ class PmsConnect(object):
|
|||
transcode_audio_codec = helpers.get_xml_attr(transcode_session, 'audioCodec')
|
||||
video_decision = helpers.get_xml_attr(transcode_session, 'videoDecision')
|
||||
transcode_video_codec = helpers.get_xml_attr(transcode_session, 'videoCodec')
|
||||
transcode_width = helpers.get_xml_attr(transcode_session, 'width')
|
||||
transcode_height = helpers.get_xml_attr(transcode_session, 'height')
|
||||
transcode_width = helpers.get_xml_attr(transcode_session, 'width') or width
|
||||
transcode_height = helpers.get_xml_attr(transcode_session, 'height') or height
|
||||
transcode_container = helpers.get_xml_attr(transcode_session, 'container')
|
||||
transcode_protocol = helpers.get_xml_attr(transcode_session, 'protocol')
|
||||
else:
|
||||
|
@ -1443,8 +1443,8 @@ class PmsConnect(object):
|
|||
transcode_speed = helpers.get_xml_attr(transcode_session, 'speed')
|
||||
video_decision = helpers.get_xml_attr(transcode_session, 'videoDecision')
|
||||
transcode_video_codec = helpers.get_xml_attr(transcode_session, 'videoCodec')
|
||||
transcode_width = helpers.get_xml_attr(transcode_session, 'width')
|
||||
transcode_height = helpers.get_xml_attr(transcode_session, 'height')
|
||||
transcode_width = helpers.get_xml_attr(transcode_session, 'width') or width
|
||||
transcode_height = helpers.get_xml_attr(transcode_session, 'height') or height
|
||||
transcode_container = helpers.get_xml_attr(transcode_session, 'container')
|
||||
transcode_protocol = helpers.get_xml_attr(transcode_session, 'protocol')
|
||||
else:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue