mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 05:57:20 -04:00
cleanup: remove redundant condition
This commit is contained in:
parent
20e9db8308
commit
6a909f956e
1 changed files with 1 additions and 1 deletions
|
@ -1214,7 +1214,7 @@ namespace MediaBrowser.Model.Dlna
|
|||
{
|
||||
playMethod = PlayMethod.DirectPlay;
|
||||
}
|
||||
else if (directStreamFailureReasons == 0 && isEligibleForDirectStream && mediaSource.SupportsDirectStream && directPlayProfile != null)
|
||||
else if (directStreamFailureReasons == 0 && isEligibleForDirectStream && mediaSource.SupportsDirectStream)
|
||||
{
|
||||
playMethod = PlayMethod.DirectStream;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue