mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
apply codec profile conditions
This commit is contained in:
parent
1bd638a932
commit
a8b841ba59
@ -440,7 +440,7 @@
|
||||
$('#txtPath', page).val(item.Path || '');
|
||||
$('#txtName', page).val(item.Name || "");
|
||||
$('#txtOverview', page).val(item.Overview || "");
|
||||
$('#txtSortName', page).val(item.SortName || "");
|
||||
$('#txtSortName', page).val(item.ForcedSortName || "");
|
||||
$('#txtDisplayMediaType', page).val(item.DisplayMediaType || "");
|
||||
$('#txtCommunityRating', page).val(item.CommunityRating || "");
|
||||
$('#txtCommunityVoteCount', page).val(item.VoteCount || "");
|
||||
@ -725,7 +725,7 @@
|
||||
var item = {
|
||||
Id: currentItem.Id,
|
||||
Name: $('#txtName', form).val(),
|
||||
SortName: $('#txtSortName', form).val(),
|
||||
ForcedSortName: $('#txtSortName', form).val(),
|
||||
DisplayMediaType: $('#txtDisplayMediaType', form).val(),
|
||||
CommunityRating: $('#txtCommunityRating', form).val(),
|
||||
VoteCount: $('#txtCommunityVoteCount', form).val(),
|
||||
|
Loading…
Reference in New Issue
Block a user