File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
src/SteamWebAPI2/Mappings Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff 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 > > (
You can’t perform that action at this time.
0 commit comments