mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
fix mac ffmpeg build
This commit is contained in:
parent
a8c7ec96d4
commit
5f61a3bbee
@ -171,7 +171,7 @@
|
||||
|
||||
function setFieldVisibilities(page, item) {
|
||||
|
||||
if (item.Path) {
|
||||
if (item.Path && item.LocationType != 'Remote') {
|
||||
$('#fldPath', page).show();
|
||||
} else {
|
||||
$('#fldPath', page).hide();
|
||||
|
@ -1285,7 +1285,7 @@
|
||||
//html += '<div><span class="mediaInfoLabel">'+Globalize.translate('MediaInfoFormat')+'</span><span class="mediaInfoAttribute">' + version.Formats.join(',') + '</span></div>';
|
||||
}
|
||||
|
||||
if (version.Path) {
|
||||
if (version.Path && version.Protocol != 'Http') {
|
||||
html += '<div style="max-width:600px;overflow:hidden;"><span class="mediaInfoLabel">' + Globalize.translate('MediaInfoPath') + '</span><span class="mediaInfoAttribute">' + version.Path + '</span></div>';
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user