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 /MediaBrowser.Controller/Extensions/ConfigurationExtensions.cs | |
| parent | 3da081ba86940f3fcedb188b2243445d1f95c883 (diff) | |
cli: add option to disable network change detection (#11253)
Diffstat (limited to 'MediaBrowser.Controller/Extensions/ConfigurationExtensions.cs')
| -rw-r--r-- | MediaBrowser.Controller/Extensions/ConfigurationExtensions.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Extensions/ConfigurationExtensions.cs b/MediaBrowser.Controller/Extensions/ConfigurationExtensions.cs index 0aaf4fcd9..7ca508426 100644 --- a/MediaBrowser.Controller/Extensions/ConfigurationExtensions.cs +++ b/MediaBrowser.Controller/Extensions/ConfigurationExtensions.cs @@ -70,6 +70,11 @@ namespace MediaBrowser.Controller.Extensions public const string SqliteCacheSizeKey = "sqlite:cacheSize"; /// <summary> + /// The key for a setting that indicates whether the application should detect network status change. + /// </summary> + public const string DetectNetworkChangeKey = "DetectNetworkChange"; + + /// <summary> /// Gets a value indicating whether the application should host static web content from the <see cref="IConfiguration"/>. /// </summary> /// <param name="configuration">The configuration to retrieve the value from.</param> |
