mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-16 07:12:18 +01:00
Replace != null with is not null
This commit is contained in:
@@ -39,7 +39,7 @@ namespace MediaBrowser.Model.Dlna
|
||||
}
|
||||
|
||||
var resolutionConfig = GetResolutionConfiguration(outputBitrate);
|
||||
if (resolutionConfig != null)
|
||||
if (resolutionConfig is not null)
|
||||
{
|
||||
var originvalValue = maxWidth;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user