mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Correct typo
This commit is contained in:
parent
d57f8ddde3
commit
d07816d7fb
1 changed files with 2 additions and 2 deletions
|
@ -131,10 +131,10 @@ class PlayUtils():
|
|||
# FileSystem or Remote, BitRate, supported encoding
|
||||
|
||||
# Avoid H265 1080p
|
||||
if item['MediaSources'][0]['Name'].startswith("1080P/H265"):
|
||||
if result['MediaSources'][0]['Name'].startswith("1080P/H265"):
|
||||
self.logMsg("Skip direct stream for 1080P/H265 since format playback is not stable.", 1)
|
||||
return False
|
||||
|
||||
|
||||
canDirectStream = result['MediaSources'][0]['SupportsDirectStream']
|
||||
# Make sure it's supported by server
|
||||
if not canDirectStream:
|
||||
|
|
Loading…
Reference in a new issue