diff --git a/MediaBrowser.Common/Updates/IInstallationManager.cs b/MediaBrowser.Common/Updates/IInstallationManager.cs index 4c8a6e959a..0844c2d792 100644 --- a/MediaBrowser.Common/Updates/IInstallationManager.cs +++ b/MediaBrowser.Common/Updates/IInstallationManager.cs @@ -47,9 +47,7 @@ namespace MediaBrowser.Common.Updates IEnumerable FilterPackages( IEnumerable availablePackages, string? name = null, -#pragma warning disable CA1720 // Identifier contains type name Guid? id = default, -#pragma warning restore CA1720 // Identifier contains type name Version? specificVersion = null); /// @@ -64,9 +62,7 @@ namespace MediaBrowser.Common.Updates IEnumerable GetCompatibleVersions( IEnumerable availablePackages, string? name = null, -#pragma warning disable CA1720 // Identifier contains type name Guid? id = default, -#pragma warning restore CA1720 // Identifier contains type name Version? minVersion = null, Version? specificVersion = null); diff --git a/MediaBrowser.Model/Updates/PackageInfo.cs b/MediaBrowser.Model/Updates/PackageInfo.cs index 8f7d7ede6a..0902e04409 100644 --- a/MediaBrowser.Model/Updates/PackageInfo.cs +++ b/MediaBrowser.Model/Updates/PackageInfo.cs @@ -77,7 +77,7 @@ namespace MediaBrowser.Model.Updates #pragma warning restore CA2227 // Collection properties should be read only /// - /// Gets or sets the image url for the package. + /// Gets or sets the image path for the package. /// [JsonPropertyName("imagePath")] public string? ImagePath { get; set; }