aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs
diff options
context:
space:
mode:
authorMark Monteiro <marknr.monteiro@protonmail.com>2020-03-07 20:18:45 +0100
committerMark Monteiro <marknr.monteiro@protonmail.com>2020-03-07 20:26:06 +0100
commit1295f6c79bdf76274501838c9e42094e4b1dd3c0 (patch)
tree821564fe2f3de49a704fdc5f781ebc1dcec3e21a /Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs
parent7ecb16a46e44b8e2f8cc23329a2b66dad6aeb2fd (diff)
Documentation and log message cleanup
Diffstat (limited to 'Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs')
-rw-r--r--Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs b/Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs
index eff6469e2..936c3640e 100644
--- a/Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs
+++ b/Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs
@@ -8,7 +8,7 @@ using Microsoft.Extensions.Logging;
namespace Jellyfin.Server.Migrations.Routines
{
/// <summary>
- /// Updater that takes care of bringing configuration up to 10.5.0 standards.
+ /// Disable transcode throttling for all installations since it is currently broken for certain video formats.
/// </summary>
internal class DisableTranscodingThrottling : IUpdater
{
@@ -18,7 +18,7 @@ namespace Jellyfin.Server.Migrations.Routines
/// <inheritdoc/>
public void Perform(CoreAppHost host, ILogger logger)
{
- // Set EnableThrottling to false as it wasn't used before, and in 10.5.0 it may introduce issues
+ // Set EnableThrottling to false since it wasn't used before and may introduce issues
var encoding = ((IConfigurationManager)host.ServerConfigurationManager).GetConfiguration<EncodingOptions>("encoding");
if (encoding.EnableThrottling)
{