mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-05 15:28:28 +01:00
Merge pull request #7605 from crobibero/playback-start-stop
Add missing properties to PlaybackStart, PlaybackStop
This commit is contained in:
@@ -699,7 +699,9 @@ namespace Emby.Server.Implementations.Session
|
|||||||
DeviceName = session.DeviceName,
|
DeviceName = session.DeviceName,
|
||||||
ClientName = session.Client,
|
ClientName = session.Client,
|
||||||
DeviceId = session.DeviceId,
|
DeviceId = session.DeviceId,
|
||||||
Session = session
|
Session = session,
|
||||||
|
PlaybackPositionTicks = info.PositionTicks,
|
||||||
|
PlaySessionId = info.PlaySessionId
|
||||||
};
|
};
|
||||||
|
|
||||||
await _eventManager.PublishAsync(eventArgs).ConfigureAwait(false);
|
await _eventManager.PublishAsync(eventArgs).ConfigureAwait(false);
|
||||||
@@ -985,7 +987,8 @@ namespace Emby.Server.Implementations.Session
|
|||||||
DeviceName = session.DeviceName,
|
DeviceName = session.DeviceName,
|
||||||
ClientName = session.Client,
|
ClientName = session.Client,
|
||||||
DeviceId = session.DeviceId,
|
DeviceId = session.DeviceId,
|
||||||
Session = session
|
Session = session,
|
||||||
|
PlaySessionId = info.PlaySessionId
|
||||||
};
|
};
|
||||||
|
|
||||||
await _eventManager.PublishAsync(eventArgs).ConfigureAwait(false);
|
await _eventManager.PublishAsync(eventArgs).ConfigureAwait(false);
|
||||||
|
|||||||
Reference in New Issue
Block a user