changed sessions id to a string
This commit is contained in:
parent
98169502d1
commit
b7d8e3a9dd
|
@ -20,7 +20,7 @@ namespace MediaBrowser.Controller.Dto
|
|||
Client = session.Client,
|
||||
DeviceId = session.DeviceId,
|
||||
DeviceName = session.DeviceName,
|
||||
Id = session.Id,
|
||||
Id = session.Id.ToString("N"),
|
||||
LastActivityDate = session.LastActivityDate,
|
||||
NowPlayingPositionTicks = session.NowPlayingPositionTicks,
|
||||
SupportsRemoteControl = session.SupportsRemoteControl,
|
||||
|
|
|
@ -9,7 +9,7 @@ namespace MediaBrowser.Model.Session
|
|||
/// Gets or sets the id.
|
||||
/// </summary>
|
||||
/// <value>The id.</value>
|
||||
public Guid Id { get; set; }
|
||||
public string Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the user id.
|
||||
|
|
Loading…
Reference in New Issue
Block a user