mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix direct play when direct stream isn't allowed.
This commit is contained in:
parent
cf5aabe779
commit
03d13e3f77
1 changed files with 1 additions and 1 deletions
|
@ -198,7 +198,7 @@ class PlayUtils(object):
|
||||||
LOG.info("--[ direct play ]")
|
LOG.info("--[ direct play ]")
|
||||||
self.direct_play(source)
|
self.direct_play(source)
|
||||||
|
|
||||||
elif source['SupportsDirectStream']:
|
elif source['SupportsDirectStream'] or source['SupportsDirectPlay']:
|
||||||
|
|
||||||
LOG.info("--[ direct stream ]")
|
LOG.info("--[ direct stream ]")
|
||||||
self.direct_url(source)
|
self.direct_url(source)
|
||||||
|
|
Loading…
Reference in a new issue