Declare VirtualInterfaceNames as string array for consistency

This commit is contained in:
Shadowghost
2022-10-01 20:00:35 +02:00
parent 4fc52a840c
commit bd9a940fed
3 changed files with 21 additions and 14 deletions

View File

@@ -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.