Make the count an int for cleanliness

This commit is contained in:
Joshua M. Boniface 2020-10-04 14:14:42 -04:00
parent d0ec6872f3
commit 8dfa2015d0
1 changed files with 1 additions and 1 deletions

View File

@ -1484,7 +1484,7 @@ namespace Emby.Server.Implementations.Session
throw new SecurityException("User is not allowed access from this device.");
}
var sessionsCount = Sessions.Where(i => string.Equals(i.UserId, user.Id)).ToList().Count;
int sessionsCount = Sessions.Where(i => string.Equals(i.UserId, user.Id)).ToList().Count;
int maxActiveSessions = user.MaxActiveSessions;
_logger.LogInformation("Current/Max sessions for user {User}: {Sessions}/{Max}", user.Username, sessionsCount, maxActiveSessions);
if (maxActiveSessions >= 1 && sessionsCount >= maxActiveSessions)