mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-03 22:40:09 +00:00
Replace == null with is null
This commit is contained in:
parent
b2def4c9ea
commit
c7d50d640e
206 changed files with 627 additions and 627 deletions
|
|
@ -190,7 +190,7 @@ namespace MediaBrowser.MediaEncoding.Encoder
|
|||
|
||||
_logger.LogInformation("Found ffmpeg version {Version}", version != null ? version.ToString() : "unknown");
|
||||
|
||||
if (version == null)
|
||||
if (version is null)
|
||||
{
|
||||
if (MaxVersion != null) // Version is unknown
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue