mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-23 03:28:09 +00:00
Replace == null with is null
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user