aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/StartupOptions.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Server/StartupOptions.cs')
-rw-r--r--Jellyfin.Server/StartupOptions.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/Jellyfin.Server/StartupOptions.cs b/Jellyfin.Server/StartupOptions.cs
index c3989751ca..91ac827ca6 100644
--- a/Jellyfin.Server/StartupOptions.cs
+++ b/Jellyfin.Server/StartupOptions.cs
@@ -68,6 +68,12 @@ namespace Jellyfin.Server
public string? PublishedServerUrl { get; set; }
/// <summary>
+ /// Gets or sets a value indicating whether the server should not detect network status change.
+ /// </summary>
+ [Option("nonetchange", Required = false, HelpText = "Indicates that the server should not detect network status change.")]
+ public bool NoDetectNetworkChange { get; set; }
+
+ /// <summary>
/// Gets the command line options as a dictionary that can be used in the .NET configuration system.
/// </summary>
/// <returns>The configuration dictionary.</returns>
@@ -90,6 +96,11 @@ namespace Jellyfin.Server
config.Add(FfmpegPathKey, FFmpegPath);
}
+ if (NoDetectNetworkChange)
+ {
+ config.Add(DetectNetworkChangeKey, bool.FalseString);
+ }
+
return config;
}
}