aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaronGreenback <jimcartlidge@yahoo.co.uk>2020-12-31 15:59:48 +0000
committerBaronGreenback <jimcartlidge@yahoo.co.uk>2020-12-31 15:59:48 +0000
commitbd1c115e46795f7db38366d31de79bf2ff88ca8d (patch)
tree898f71dff10af0708701673fb1371f5cd4a68da0
parent149c2b2169192da29d82c440175d8d9049dea8b3 (diff)
renamed imagePath to imageUrl
-rw-r--r--MediaBrowser.Model/Updates/PackageInfo.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/MediaBrowser.Model/Updates/PackageInfo.cs b/MediaBrowser.Model/Updates/PackageInfo.cs
index 2b6e940d1..7a82685f0 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
/// <summary>
- /// Gets or sets the image path for the package.
+ /// Gets or sets the image url for the package.
/// </summary>
- [JsonPropertyName("imagePath")]
- public string? ImagePath { get; set; }
+ [JsonPropertyName("imageUrl")]
+ public string? ImageUrl { get; set; }
}
}