mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 22:43:07 +03:00
Replace != null with is not null
This commit is contained in:
@@ -178,7 +178,7 @@ namespace Jellyfin.Api.Controllers
|
||||
|
||||
Response.OnCompleted(() =>
|
||||
{
|
||||
if (transcodingJob != null)
|
||||
if (transcodingJob is not null)
|
||||
{
|
||||
_transcodingJobHelper.OnTranscodeEndRequest(transcodingJob);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user