Kaynağa Gözat

add tagline to editing interface

Luke Pulverenti 11 yıl önce
ebeveyn
işleme
6904919794

+ 1 - 1
MediaBrowser.Api/ApiEntryPoint.cs

@@ -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;
             }
             }

+ 6 - 0
MediaBrowser.Api/ItemUpdateService.cs

@@ -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)
             {
             {