mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-16 20:50:48 +01:00
Replace != null with is not null
This commit is contained in:
@@ -113,7 +113,7 @@ namespace Emby.Notifications
|
||||
}
|
||||
}
|
||||
|
||||
if (options != null && !string.IsNullOrEmpty(request.NotificationType))
|
||||
if (options is not null && !string.IsNullOrEmpty(request.NotificationType))
|
||||
{
|
||||
var config = GetConfiguration();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user