mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix source selection
This commit is contained in:
parent
ec2c3622f3
commit
821e6ba385
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ class PlayUtils():
|
|||
selected_source = source
|
||||
break
|
||||
|
||||
elif (self.item['MediaType'] != 'Video' or self.item['Type'] == 'TvChannel' or
|
||||
elif (self.item['MediaType'] != 'Video' and self.item['Type'] == 'TvChannel' and
|
||||
self.item.get('SourceType') != 'Library'):
|
||||
# Do nothing
|
||||
log.info("Special case, skip media sources selection.")
|
||||
|
|
Loading…
Reference in a new issue