mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-22 18:14:42 +01:00
Replace != null with is not null
This commit is contained in:
@@ -251,7 +251,7 @@ namespace Emby.Server.Implementations.SyncPlay
|
||||
GroupName = request.GroupName;
|
||||
AddSession(session);
|
||||
|
||||
var sessionIsPlayingAnItem = session.FullNowPlayingItem != null;
|
||||
var sessionIsPlayingAnItem = session.FullNowPlayingItem is not null;
|
||||
|
||||
RestartCurrentItem();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user