mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-27 03:04:49 +03:00
Replace == null with is null
This commit is contained in:
@@ -26,7 +26,7 @@ namespace MediaBrowser.Controller.Entities
|
||||
|
||||
var current = item.RemoteTrailers.FirstOrDefault(i => string.Equals(i.Url, url, StringComparison.OrdinalIgnoreCase));
|
||||
|
||||
if (current == null)
|
||||
if (current is null)
|
||||
{
|
||||
var mediaUrl = new MediaUrl
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user