diff options
| author | BaronGreenback <jimcartlidge@yahoo.co.uk> | 2021-01-19 10:36:37 +0000 |
|---|---|---|
| committer | BaronGreenback <jimcartlidge@yahoo.co.uk> | 2021-01-19 10:36:37 +0000 |
| commit | 6a7623da02045bb8600bc2aad3047a4debda03f1 (patch) | |
| tree | 77a75b5ae8efdc830107df6f7ac76d277b3bff24 /Jellyfin.Networking/Manager/NetworkManager.cs | |
| parent | 8b2b3b77a548bf5e46e1cb6931ecaaf81a8ca751 (diff) | |
Simplified Code
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; } |
