add tagline to editing interface

This commit is contained in:
Luke Pulverenti 2014-06-28 22:30:20 -04:00
parent 608ebf4829
commit 6904919794
2 changed files with 7 additions and 1 deletions

View File

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

View File

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