mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update playlist query
This commit is contained in:
parent
a38b85a4df
commit
6afa97f6b8
14 changed files with 142 additions and 121 deletions
|
@ -583,7 +583,7 @@
|
|||
|
||||
showPlayMenu: function (positionTo, itemId, itemType, isFolder, mediaType, resumePositionTicks) {
|
||||
|
||||
var externalPlayers = AppSettings.enableExternalPlayers();
|
||||
var externalPlayers = AppInfo.supportsExternalPlayers && AppSettings.enableExternalPlayers();
|
||||
|
||||
if (!resumePositionTicks && mediaType != "Audio" && !isFolder) {
|
||||
|
||||
|
@ -727,7 +727,9 @@
|
|||
}
|
||||
|
||||
if (item.CanDownload) {
|
||||
commands.push('download');
|
||||
if (AppInfo.supportsDownloading) {
|
||||
commands.push('download');
|
||||
}
|
||||
}
|
||||
|
||||
if (LibraryBrowser.canShare(item, user)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue