2
0
Nick 1 жил өмнө
parent
commit
fc61933748

+ 1 - 1
Emby.Server.Implementations/Dto/DtoService.cs

@@ -1064,7 +1064,7 @@ namespace Emby.Server.Implementations.Dto
 
 
                 if (options.ContainsField(ItemFields.Trickplay))
                 if (options.ContainsField(ItemFields.Trickplay))
                 {
                 {
-                    var manifest = _trickplayManager.GetTrickplayManifest(item).ConfigureAwait(false).GetAwaiter().GetResult();
+                    var manifest = _trickplayManager.GetTrickplayManifest(item).GetAwaiter().GetResult();
 
 
                     // To stay consistent with other fields, this must go from a Guid to a non-dashed string.
                     // To stay consistent with other fields, this must go from a Guid to a non-dashed string.
                     // This does not seem to occur automatically to dictionaries like it does with other Guid fields.
                     // This does not seem to occur automatically to dictionaries like it does with other Guid fields.

+ 4 - 0
MediaBrowser.Model/Configuration/ServerConfiguration.cs

@@ -265,6 +265,10 @@ namespace MediaBrowser.Model.Configuration
         /// <value>The limit for parallel image encoding.</value>
         /// <value>The limit for parallel image encoding.</value>
         public int ParallelImageEncodingLimit { get; set; }
         public int ParallelImageEncodingLimit { get; set; }
 
 
+        /// <summary>
+        /// Gets or sets the trickplay options.
+        /// </summary>
+        /// <value>The trickplay options.</value>
         public TrickplayOptions TrickplayOptions { get; set; } = new TrickplayOptions();
         public TrickplayOptions TrickplayOptions { get; set; } = new TrickplayOptions();
     }
     }
 }
 }