aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCody Robibero <cody@robibe.ro>2021-10-29 06:33:46 -0600
committerCody Robibero <cody@robibe.ro>2021-10-29 06:33:46 -0600
commit73201ed498ade1b2731b58f7e8fe1f0aba54a3e5 (patch)
treeb88ff6dd86efa282a820d1c168268029d4bc251f
parentbcb1c9b652d7b74e785f1221e5df6836e6bbfffe (diff)
Default log upload to enabled
-rw-r--r--MediaBrowser.Model/Configuration/ServerConfiguration.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Configuration/ServerConfiguration.cs b/MediaBrowser.Model/Configuration/ServerConfiguration.cs
index 37dc49d7a..b79d18abd 100644
--- a/MediaBrowser.Model/Configuration/ServerConfiguration.cs
+++ b/MediaBrowser.Model/Configuration/ServerConfiguration.cs
@@ -463,6 +463,6 @@ namespace MediaBrowser.Model.Configuration
/// <summary>
/// Gets or sets a value indicating whether clients should be allowed to upload logs.
/// </summary>
- public bool AllowClientLogUpload { get; set; }
+ public bool AllowClientLogUpload { get; set; } = true;
}
}