mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-12-25 02:06:09 +00:00
Merge pull request #573 from oddstr13/fix-directplay-1
Fix direct play when direct stream isn't allowed.
This commit is contained in:
commit
a18ca8ab9e
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