1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

support notifications in firefox

This commit is contained in:
Luke Pulverenti 2013-05-31 11:03:40 -04:00
parent 1ac0f71d1e
commit d4ba64d07a
2 changed files with 20 additions and 13 deletions

View file

@ -884,13 +884,12 @@ var Dashboard = {
else if (msg.MessageType === "Play") {
ApiClient.getItems(Dashboard.getCurrentUserId(), {
Ids: msg.Data.ItemIds.join(','),
Fields: 'MediaStreams,UserData,DisplayMediaType,SeriesInfo,AudioInfo,Chapters'
}).done(function(result) {
Ids: msg.Data.ItemIds.join(','),
Fields: 'MediaStreams,UserData,DisplayMediaType,SeriesInfo,AudioInfo,Chapters,Path'
}).done(function (result) {
MediaPlayer.play(result.Items, msg.Data.StartPositionTicks);
});