mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
add tagline to editing interface
This commit is contained in:
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…
x
Reference in New Issue
Block a user