diff --git a/MediaBrowser.Model/Updates/PackageInfo.cs b/MediaBrowser.Model/Updates/PackageInfo.cs index 2b6e940d15..7a82685f0e 100644 --- a/MediaBrowser.Model/Updates/PackageInfo.cs +++ b/MediaBrowser.Model/Updates/PackageInfo.cs @@ -77,9 +77,9 @@ namespace MediaBrowser.Model.Updates #pragma warning restore CA2227 // Collection properties should be read only /// - /// Gets or sets the image path for the package. + /// Gets or sets the image url for the package. /// - [JsonPropertyName("imagePath")] - public string? ImagePath { get; set; } + [JsonPropertyName("imageUrl")] + public string? ImageUrl { get; set; } } }