changed sessions id to a string

This commit is contained in:
Luke Pulverenti 2013-08-28 10:00:51 -04:00
parent 98169502d1
commit b7d8e3a9dd
2 changed files with 2 additions and 2 deletions

View File

@ -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,

View File

@ -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.