apply codec profile conditions

This commit is contained in:
Luke Pulverenti 2014-03-24 13:54:45 -04:00
parent 1bd638a932
commit a8b841ba59

View File

@ -440,7 +440,7 @@
$('#txtPath', page).val(item.Path || ''); $('#txtPath', page).val(item.Path || '');
$('#txtName', page).val(item.Name || ""); $('#txtName', page).val(item.Name || "");
$('#txtOverview', page).val(item.Overview || ""); $('#txtOverview', page).val(item.Overview || "");
$('#txtSortName', page).val(item.SortName || ""); $('#txtSortName', page).val(item.ForcedSortName || "");
$('#txtDisplayMediaType', page).val(item.DisplayMediaType || ""); $('#txtDisplayMediaType', page).val(item.DisplayMediaType || "");
$('#txtCommunityRating', page).val(item.CommunityRating || ""); $('#txtCommunityRating', page).val(item.CommunityRating || "");
$('#txtCommunityVoteCount', page).val(item.VoteCount || ""); $('#txtCommunityVoteCount', page).val(item.VoteCount || "");
@ -725,7 +725,7 @@
var item = { var item = {
Id: currentItem.Id, Id: currentItem.Id,
Name: $('#txtName', form).val(), Name: $('#txtName', form).val(),
SortName: $('#txtSortName', form).val(), ForcedSortName: $('#txtSortName', form).val(),
DisplayMediaType: $('#txtDisplayMediaType', form).val(), DisplayMediaType: $('#txtDisplayMediaType', form).val(),
CommunityRating: $('#txtCommunityRating', form).val(), CommunityRating: $('#txtCommunityRating', form).val(),
VoteCount: $('#txtCommunityVoteCount', form).val(), VoteCount: $('#txtCommunityVoteCount', form).val(),