mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fix mac ffmpeg build
This commit is contained in:
parent
a8c7ec96d4
commit
5f61a3bbee
2 changed files with 2 additions and 2 deletions
|
@ -171,7 +171,7 @@
|
||||||
|
|
||||||
function setFieldVisibilities(page, item) {
|
function setFieldVisibilities(page, item) {
|
||||||
|
|
||||||
if (item.Path) {
|
if (item.Path && item.LocationType != 'Remote') {
|
||||||
$('#fldPath', page).show();
|
$('#fldPath', page).show();
|
||||||
} else {
|
} else {
|
||||||
$('#fldPath', page).hide();
|
$('#fldPath', page).hide();
|
||||||
|
|
|
@ -1285,7 +1285,7 @@
|
||||||
//html += '<div><span class="mediaInfoLabel">'+Globalize.translate('MediaInfoFormat')+'</span><span class="mediaInfoAttribute">' + version.Formats.join(',') + '</span></div>';
|
//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>';
|
html += '<div style="max-width:600px;overflow:hidden;"><span class="mediaInfoLabel">' + Globalize.translate('MediaInfoPath') + '</span><span class="mediaInfoAttribute">' + version.Path + '</span></div>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue