diff options
| author | Bond_009 <bond.009@outlook.com> | 2022-10-13 18:10:55 +0200 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2022-12-07 16:42:28 +0100 |
| commit | 71982c72972539ebd31b954d118601586658b916 (patch) | |
| tree | 60c64c5dd8f8a154cabf2d3d3f876a9342218d1d /Jellyfin.Server/StartupOptions.cs | |
| parent | 236dd650d0c9a4a8e4bad06b188387a1e6447de4 (diff) | |
Fix build errors
Diffstat (limited to 'Jellyfin.Server/StartupOptions.cs')
| -rw-r--r-- | Jellyfin.Server/StartupOptions.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Jellyfin.Server/StartupOptions.cs b/Jellyfin.Server/StartupOptions.cs index 0a6f9bd92..0d9f379e0 100644 --- a/Jellyfin.Server/StartupOptions.cs +++ b/Jellyfin.Server/StartupOptions.cs @@ -79,9 +79,9 @@ namespace Jellyfin.Server /// Gets the command line options as a dictionary that can be used in the .NET configuration system. /// </summary> /// <returns>The configuration dictionary.</returns> - public Dictionary<string, string> ConvertToConfig() + public Dictionary<string, string?> ConvertToConfig() { - var config = new Dictionary<string, string>(); + var config = new Dictionary<string, string?>(); if (NoWebClient) { |
