add tagline to editing interface

pull/702/head
Luke Pulverenti 10 years ago
parent 608ebf4829
commit 6904919794

@ -418,7 +418,7 @@ namespace MediaBrowser.Api
private async void DeletePartialStreamFiles(string path, TranscodingJobType jobType, int retryCount, int delayMs) private async void DeletePartialStreamFiles(string path, TranscodingJobType jobType, int retryCount, int delayMs)
{ {
if (retryCount >= 8) if (retryCount >= 10)
{ {
return; return;
} }

@ -108,6 +108,12 @@ namespace MediaBrowser.Api
hasTags.Tags = request.Tags; hasTags.Tags = request.Tags;
} }
var hasTaglines = item as IHasTaglines;
if (hasTaglines != null)
{
hasTaglines.Taglines = request.Taglines;
}
var hasShortOverview = item as IHasShortOverview; var hasShortOverview = item as IHasShortOverview;
if (hasShortOverview != null) if (hasShortOverview != null)
{ {

Loading…
Cancel
Save