Skip to content

Commit dd037ac

Browse files
author
Justin Skiles
committed
Fixed typo from last commit
1 parent 9de9651 commit dd037ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SteamWebAPI2/Mappings/SteamRemoteStorageProfile.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public SteamRemoteStorageProfile()
1818
});
1919
CreateMap<PublishedFileDetails, PublishedFileDetailsModel>()
2020
.ForMember(dest => dest.FileUrl, opts => opts.MapFrom(source => !string.IsNullOrWhiteSpace(source.FileUrl) ? new Uri(source.FileUrl) : null))
21-
.ForMember(dest => dest.PreviewUrl, opts => opts.MapFrom(source => !string.IsNullOrWhiteSpace(source.FileUrl) ? new Uri(source.PreviewUrl) : null));
21+
.ForMember(dest => dest.PreviewUrl, opts => opts.MapFrom(source => !string.IsNullOrWhiteSpace(source.PreviewUrl) ? new Uri(source.PreviewUrl) : null));
2222
CreateMap<PublishedFileDetailsResultContainer, IReadOnlyCollection<PublishedFileDetailsModel>>()
2323
.ConvertUsing((src, dest, context) =>
2424
context.Mapper.Map<IList<PublishedFileDetails>, IReadOnlyCollection<PublishedFileDetailsModel>>(

0 commit comments

Comments
 (0)