Context menu option parity between miniplayer and fullscreen player

This commit is contained in:
ferferga 2020-07-01 15:56:47 +02:00
parent 08a995fe2c
commit b4d4b4fab9

View File

@ -195,14 +195,16 @@ define(['browser', 'datetime', 'backdrop', 'libraryBrowser', 'listView', 'imageL
positionTo: contextButton
};
var apiClient = connectionManager.getApiClient(item.ServerId);
apiClient.getItem(apiClient.getCurrentUserId(), item.Id).then(function (fullItem) {
apiClient.getCurrentUser().then(function (user) {
contextButton.addEventListener('click', function () {
itemContextMenu.show(Object.assign({
item: item,
item: fullItem,
user: user
}, options));
});
});
});
setImageUrl(context, state, url);
if (item) {
backdrop.setBackdrops([item]);