diff options
| author | Ionut Andrei Oanca <oancaionutandrei@gmail.com> | 2020-10-21 16:42:57 +0200 |
|---|---|---|
| committer | Ionut Andrei Oanca <oancaionutandrei@gmail.com> | 2020-10-21 16:42:57 +0200 |
| commit | 36fee4e60a033d8d785e62788aaf00999d497c58 (patch) | |
| tree | d027211df6ba4f4991967831d38eccb954a4365b /Emby.Server.Implementations/SyncPlay/GroupController.cs | |
| parent | 93cbf64f884688b667c5403412cb8193dadb251c (diff) | |
Minor fixes
Diffstat (limited to 'Emby.Server.Implementations/SyncPlay/GroupController.cs')
| -rw-r--r-- | Emby.Server.Implementations/SyncPlay/GroupController.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Emby.Server.Implementations/SyncPlay/GroupController.cs b/Emby.Server.Implementations/SyncPlay/GroupController.cs index ff1340e46..26972de8a 100644 --- a/Emby.Server.Implementations/SyncPlay/GroupController.cs +++ b/Emby.Server.Implementations/SyncPlay/GroupController.cs @@ -129,7 +129,7 @@ namespace Emby.Server.Implementations.SyncPlay /// <summary> /// Checks if a session is in this group. /// </summary> - /// <param name="sessionId">The session id to check.</param> + /// <param name="sessionId">The session identifier to check.</param> /// <returns><c>true</c> if the session is in this group; <c>false</c> otherwise.</returns> private bool ContainsSession(string sessionId) { @@ -509,7 +509,7 @@ namespace Emby.Server.Implementations.SyncPlay return false; } - // Check is participants can access the new playing queue. + // Check if participants can access the new playing queue. if (!AllUsersHaveAccessToQueue(playQueue)) { return false; @@ -583,7 +583,7 @@ namespace Emby.Server.Implementations.SyncPlay return false; } - // Check is participants can access the new playing queue. + // Check if participants can access the new playing queue. if (!AllUsersHaveAccessToQueue(newItems)) { return false; |
