Add transient to subtitle stream export

This commit is contained in:
JonnyWong16
2020-11-25 21:46:24 -08:00
parent 2089172384
commit 91a8c0e7a0
2 changed files with 5 additions and 2 deletions

View File

@@ -369,6 +369,7 @@ class SubtitleStream(MediaPartStream):
self.headerCompression = data.attrib.get('headerCompression')
self.key = data.attrib.get('key')
self.requiredBandwidths = data.attrib.get('requiredBandwidths')
self.transient = data.attrib.get('transient')
@utils.registerPlexObject

View File

@@ -330,7 +330,8 @@ class Export(object):
'forced': None,
'format': None,
'headerCompression': None,
'key': None
'key': None,
'transient': None
}
}
},
@@ -638,7 +639,8 @@ class Export(object):
'forced': None,
'format': None,
'headerCompression': None,
'key': None
'key': None,
'transient': None
}
}
},