mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
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,
|
Client = session.Client,
|
||||||
DeviceId = session.DeviceId,
|
DeviceId = session.DeviceId,
|
||||||
DeviceName = session.DeviceName,
|
DeviceName = session.DeviceName,
|
||||||
Id = session.Id,
|
Id = session.Id.ToString("N"),
|
||||||
LastActivityDate = session.LastActivityDate,
|
LastActivityDate = session.LastActivityDate,
|
||||||
NowPlayingPositionTicks = session.NowPlayingPositionTicks,
|
NowPlayingPositionTicks = session.NowPlayingPositionTicks,
|
||||||
SupportsRemoteControl = session.SupportsRemoteControl,
|
SupportsRemoteControl = session.SupportsRemoteControl,
|
||||||
|
@ -9,7 +9,7 @@ namespace MediaBrowser.Model.Session
|
|||||||
/// Gets or sets the id.
|
/// Gets or sets the id.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>The id.</value>
|
/// <value>The id.</value>
|
||||||
public Guid Id { get; set; }
|
public string Id { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the user id.
|
/// Gets or sets the user id.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user