diff options
Diffstat (limited to 'Jellyfin.Networking/Manager/NetworkManager.cs')
| -rw-r--r-- | Jellyfin.Networking/Manager/NetworkManager.cs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Jellyfin.Networking/Manager/NetworkManager.cs b/Jellyfin.Networking/Manager/NetworkManager.cs index c9f900660..34b1f0daa 100644 --- a/Jellyfin.Networking/Manager/NetworkManager.cs +++ b/Jellyfin.Networking/Manager/NetworkManager.cs @@ -130,24 +130,24 @@ namespace Jellyfin.Networking.Manager public static string MockNetworkSettings { get; set; } = string.Empty; /// <summary> - /// Gets or sets a value indicating whether IP6 is enabled. + /// Gets or sets a value indicating whether the system has IP4 is enabled. /// </summary> - public bool IsIP6Enabled { get; set; } + public static bool SystemIP4Enabled { get; set; } /// <summary> - /// Gets or sets a value indicating whether IP4 is enabled. + /// Gets or sets a value indicating whether the system has IP6 is enabled. /// </summary> - public bool IsIP4Enabled { get; set; } + public static bool SystemIP6Enabled { get; set; } /// <summary> - /// Gets or sets a value indicating whether the system has IP4 is enabled. + /// Gets or sets a value indicating whether IP6 is enabled. /// </summary> - public bool SystemIP4Enabled { get; set; } + public bool IsIP6Enabled { get; set; } /// <summary> - /// Gets or sets a value indicating whether the system has IP6 is enabled. + /// Gets or sets a value indicating whether IP4 is enabled. /// </summary> - public bool SystemIP6Enabled { get; set; } + public bool IsIP4Enabled { get; set; } /// <inheritdoc/> public Collection<IPObject> RemoteAddressFilter { get; private set; } |
