aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Session/SessionManager.cs
diff options
context:
space:
mode:
authorherby2212 <12448284+herby2212@users.noreply.github.com>2023-05-14 15:05:03 +0200
committerherby2212 <12448284+herby2212@users.noreply.github.com>2023-05-14 15:05:03 +0200
commitace89e45976a65a365a3d9d7a2ed737a61d584d4 (patch)
tree11ec948df612f155f1dccfd6a6e8ab99ee5a6c90 /Emby.Server.Implementations/Session/SessionManager.cs
parente1190d15d6ca0b7cad2b4991e524b35ecca35949 (diff)
fix formatting and update summary
Diffstat (limited to 'Emby.Server.Implementations/Session/SessionManager.cs')
-rw-r--r--Emby.Server.Implementations/Session/SessionManager.cs9
1 files changed, 5 insertions, 4 deletions
diff --git a/Emby.Server.Implementations/Session/SessionManager.cs b/Emby.Server.Implementations/Session/SessionManager.cs
index 056c3e4b6..14a62626c 100644
--- a/Emby.Server.Implementations/Session/SessionManager.cs
+++ b/Emby.Server.Implementations/Session/SessionManager.cs
@@ -404,7 +404,7 @@ namespace Emby.Server.Implementations.Session
session.LastPlaybackCheckIn = DateTime.UtcNow;
}
- if (info.IsPaused && session.LastPausedDate.HasValue == false)
+ if (info.IsPaused && session.LastPausedDate is null)
{
session.LastPausedDate = DateTime.UtcNow;
}
@@ -656,9 +656,10 @@ namespace Emby.Server.Implementations.Session
private async void CheckForInactiveSteams(object state)
{
var pausedSessions = Sessions.Where(i =>
- (i.NowPlayingItem is not null) &&
- (i.PlayState.IsPaused == true) &&
- (i.LastPausedDate is not null)).ToList();
+ i.NowPlayingItem is not null
+ && i.PlayState.IsPaused
+ && i.LastPausedDate is not null)
+ .ToList();
if (pausedSessions.Count > 0)
{