diff options
Diffstat (limited to 'MediaBrowser.Model')
| -rw-r--r-- | MediaBrowser.Model/Syncplay/GroupUpdateType.cs | 6 | ||||
| -rw-r--r-- | MediaBrowser.Model/Syncplay/PlaybackRequest.cs | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/MediaBrowser.Model/Syncplay/GroupUpdateType.cs b/MediaBrowser.Model/Syncplay/GroupUpdateType.cs index 20e76932d..9f40f9577 100644 --- a/MediaBrowser.Model/Syncplay/GroupUpdateType.cs +++ b/MediaBrowser.Model/Syncplay/GroupUpdateType.cs @@ -30,13 +30,13 @@ namespace MediaBrowser.Model.Syncplay /// </summary> PrepareSession, /// <summary> - /// The not-in-group error. Tells a user that it doesn't belong to a group. + /// The not-in-group error. Tells a user that they don't belong to a group. /// </summary> NotInGroup, /// <summary> - /// The group-not-joined error. Sent when a request to join a group fails. + /// The group-does-not-exist error. Sent when trying to join a non-existing group. /// </summary> - GroupNotJoined, + GroupDoesNotExist, /// <summary> /// The create-group-denied error. Sent when a user tries to create a group without required permissions. /// </summary> diff --git a/MediaBrowser.Model/Syncplay/PlaybackRequest.cs b/MediaBrowser.Model/Syncplay/PlaybackRequest.cs index cae769db0..ba97641f6 100644 --- a/MediaBrowser.Model/Syncplay/PlaybackRequest.cs +++ b/MediaBrowser.Model/Syncplay/PlaybackRequest.cs @@ -11,7 +11,7 @@ namespace MediaBrowser.Model.Syncplay /// Gets or sets the request type. /// </summary> /// <value>The request type.</value> - public PlaybackRequestType Type; + public PlaybackRequestType Type { get; set; } /// <summary> /// Gets or sets when the request has been made by the client. |
