diff options
| author | gnattu <gnattu@users.noreply.github.com> | 2024-09-10 03:17:10 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-09 13:17:10 -0600 |
| commit | 987dbe98c8ab55c5c8eb563820e54453c835cdde (patch) | |
| tree | 8d84e69d461b60da74493bbbd7aac4fa12bb2756 /Emby.Server.Implementations | |
| parent | 3da081ba86940f3fcedb188b2243445d1f95c883 (diff) | |
cli: add option to disable network change detection (#11253)
Diffstat (limited to 'Emby.Server.Implementations')
| -rw-r--r-- | Emby.Server.Implementations/ConfigurationOptions.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/ConfigurationOptions.cs b/Emby.Server.Implementations/ConfigurationOptions.cs index e86010513..702707297 100644 --- a/Emby.Server.Implementations/ConfigurationOptions.cs +++ b/Emby.Server.Implementations/ConfigurationOptions.cs @@ -20,7 +20,8 @@ namespace Emby.Server.Implementations { PlaylistsAllowDuplicatesKey, bool.FalseString }, { BindToUnixSocketKey, bool.FalseString }, { SqliteCacheSizeKey, "20000" }, - { FfmpegSkipValidationKey, bool.FalseString } + { FfmpegSkipValidationKey, bool.FalseString }, + { DetectNetworkChangeKey, bool.TrueString } }; } } |
