mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-04 07:10:45 +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
|
|
@ -531,7 +531,7 @@ namespace MediaBrowser.MediaEncoding.Encoder
|
|||
throw;
|
||||
}
|
||||
|
||||
if (result == null || (result.Streams == null && result.Format == null))
|
||||
if (result is null || (result.Streams is null && result.Format is null))
|
||||
{
|
||||
throw new FfmpegException("ffprobe failed - streams and format are both null.");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue