diff options
| author | Shadowghost <Ghost_of_Stone@web.de> | 2022-10-01 20:00:35 +0200 |
|---|---|---|
| committer | Shadowghost <Ghost_of_Stone@web.de> | 2022-10-01 21:42:31 +0200 |
| commit | bd9a940fed129d99fe9ffedafec324e795549c90 (patch) | |
| tree | 5b0bc8269df3b7e2bee1c6c67e50124af20cf4b0 /Jellyfin.Networking/Configuration/NetworkConfiguration.cs | |
| parent | 4fc52a840c5be7ce72978c3cfca2721e2edc251c (diff) | |
Declare VirtualInterfaceNames as string array for consistency
Diffstat (limited to 'Jellyfin.Networking/Configuration/NetworkConfiguration.cs')
| -rw-r--r-- | Jellyfin.Networking/Configuration/NetworkConfiguration.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Networking/Configuration/NetworkConfiguration.cs b/Jellyfin.Networking/Configuration/NetworkConfiguration.cs index 642af7dda..f90419851 100644 --- a/Jellyfin.Networking/Configuration/NetworkConfiguration.cs +++ b/Jellyfin.Networking/Configuration/NetworkConfiguration.cs @@ -150,7 +150,7 @@ namespace Jellyfin.Networking.Configuration /// <summary> /// Gets or sets a value indicating the interface name prefixes that should be ignored. The list can be comma separated and values are case-insensitive. <seealso cref="IgnoreVirtualInterfaces"/>. /// </summary> - public string VirtualInterfaceNames { get; set; } = "veth"; + public string[] VirtualInterfaceNames { get; set; } = new string[] { "veth" }; /// <summary> /// Gets or sets a value indicating whether the published server uri is based on information in HTTP requests. |
