mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Fixed createPlayList
This commit is contained in:
parent
f2c2beca0f
commit
d14d8145d5
@ -340,10 +340,19 @@ namespace Emby.Dlna.PlayTo
|
|||||||
}
|
}
|
||||||
|
|
||||||
var playlist = new PlaylistItem[len];
|
var playlist = new PlaylistItem[len];
|
||||||
playlist[0] = CreatePlaylistItem(items[0], user, command.StartPositionTicks.Value, command.MediaSourceId, command.AudioStreamIndex, command.SubtitleStreamIndex);
|
|
||||||
|
// Not nullable enabled - so this is required.
|
||||||
|
playlist[0] = CreatePlaylistItem(
|
||||||
|
items[0],
|
||||||
|
user,
|
||||||
|
(command.StartPositionTicks == null) ? 0 : command.StartPositionTicks.Value,
|
||||||
|
command.MediaSourceId ?? string.Empty,
|
||||||
|
command.AudioStreamIndex,
|
||||||
|
command.SubtitleStreamIndex);
|
||||||
|
|
||||||
for (int i = 1; i < len; i++)
|
for (int i = 1; i < len; i++)
|
||||||
{
|
{
|
||||||
playlist[i] = CreatePlaylistItem(items[i], user, 0, null, null, null);
|
playlist[i] = CreatePlaylistItem(items[i], user, 0, string.Empty, null, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
_logger.LogDebug("{0} - Playlist created", _session.DeviceName);
|
_logger.LogDebug("{0} - Playlist created", _session.DeviceName);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user