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.Server/Migrations/PreStartupRoutines/CreateNetworkConfiguration.cs | |
| parent | 4fc52a840c5be7ce72978c3cfca2721e2edc251c (diff) | |
Declare VirtualInterfaceNames as string array for consistency
Diffstat (limited to 'Jellyfin.Server/Migrations/PreStartupRoutines/CreateNetworkConfiguration.cs')
| -rw-r--r-- | Jellyfin.Server/Migrations/PreStartupRoutines/CreateNetworkConfiguration.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server/Migrations/PreStartupRoutines/CreateNetworkConfiguration.cs b/Jellyfin.Server/Migrations/PreStartupRoutines/CreateNetworkConfiguration.cs index b67017281..2c2715526 100644 --- a/Jellyfin.Server/Migrations/PreStartupRoutines/CreateNetworkConfiguration.cs +++ b/Jellyfin.Server/Migrations/PreStartupRoutines/CreateNetworkConfiguration.cs @@ -114,7 +114,7 @@ public class CreateNetworkConfiguration : IMigrationRoutine public bool IgnoreVirtualInterfaces { get; set; } = true; - public string VirtualInterfaceNames { get; set; } = "veth"; + public string[] VirtualInterfaceNames { get; set; } = new string[] { "veth" }; public string[] PublishedServerUriBySubnet { get; set; } = Array.Empty<string>(); |
