diff --git a/Jellyfin.Api/Models/EnvironmentDtos/DefaultDirectoryBrowserInfoDto.cs b/Jellyfin.Api/Models/EnvironmentDtos/DefaultDirectoryBrowserInfoDto.cs index a86815b81c..92be15b8a6 100644 --- a/Jellyfin.Api/Models/EnvironmentDtos/DefaultDirectoryBrowserInfoDto.cs +++ b/Jellyfin.Api/Models/EnvironmentDtos/DefaultDirectoryBrowserInfoDto.cs @@ -8,6 +8,6 @@ namespace Jellyfin.Api.Models.EnvironmentDtos /// /// Gets or sets the path. /// - public string Path { get; set; } + public string? Path { get; set; } } } diff --git a/Jellyfin.Api/Models/EnvironmentDtos/ValidatePathDto.cs b/Jellyfin.Api/Models/EnvironmentDtos/ValidatePathDto.cs index 60c82e166b..418c11c2d0 100644 --- a/Jellyfin.Api/Models/EnvironmentDtos/ValidatePathDto.cs +++ b/Jellyfin.Api/Models/EnvironmentDtos/ValidatePathDto.cs @@ -13,7 +13,7 @@ namespace Jellyfin.Api.Models.EnvironmentDtos /// /// Gets or sets the path. /// - public string Path { get; set; } + public string? Path { get; set; } /// /// Gets or sets is path file.