Rename Ugc.Item.PreviewImageUrl

This commit is contained in:
Garry Newman 2019-05-07 15:50:37 +01:00
parent a4a1b32bc7
commit f42fdfd09a
2 changed files with 2 additions and 2 deletions

View File

@ -197,7 +197,7 @@ public async Task<bool> Vote( bool up )
/// <summary> /// <summary>
/// The URL to the preview image for this item /// The URL to the preview image for this item
/// </summary> /// </summary>
public string PreviewUrl { get; internal set; } public string PreviewImageUrl { get; internal set; }
} }
} }

View File

@ -41,7 +41,7 @@ public IEnumerable<Item> Entries
var sb = Helpers.TakeStringBuilder(); var sb = Helpers.TakeStringBuilder();
if ( SteamUGC.Internal.GetQueryUGCPreviewURL( Handle, i, sb, (uint)sb.Capacity ) ) if ( SteamUGC.Internal.GetQueryUGCPreviewURL( Handle, i, sb, (uint)sb.Capacity ) )
{ {
item.PreviewUrl = sb.ToString(); item.PreviewImageUrl = sb.ToString();
} }
// TODO GetQueryUGCAdditionalPreview // TODO GetQueryUGCAdditionalPreview