Skip to content

Commit

Permalink
Remove deprecated ISA manifest_type property in Kodi v21+
Browse files Browse the repository at this point in the history
  • Loading branch information
MoojMidge committed Apr 17, 2024
1 parent e9ab567 commit 11aa5a6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion resources/lib/youtube_plugin/kodion/items/xbmc/xbmc_items.py
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,9 @@ def video_playback_item(context, video_item, show_fanart=None):
if current_system_version.compatible(19, 0) else
'inputstreamaddon')
props[inputstream_property] = 'inputstream.adaptive'
props['inputstream.adaptive.manifest_type'] = manifest_type

if not current_system_version.compatible(21, 0):
props['inputstream.adaptive.manifest_type'] = manifest_type

if headers:
props['inputstream.adaptive.manifest_headers'] = headers
Expand Down

0 comments on commit 11aa5a6

Please sign in to comment.