Skip to content
Snippets Groups Projects
Commit 3d3cbd6c authored by Thomas Nigro's avatar Thomas Nigro
Browse files

Fix missing ;

parent 5289caa1
No related branches found
No related tags found
No related merge requests found
......@@ -71,7 +71,7 @@ namespace VLC_WINRT_APP.Helpers.MusicLibrary.MusicEntities
public void MapFrom(LastFm.Album lastFmAlbum)
{
Image img = new Image();
img.MapFrom(lastFmAlbum.Image.FirstOrDefault(x=>x.Size == "extralarge" || x.Size == "mega")));
img.MapFrom(lastFmAlbum.Image.FirstOrDefault(x=>x.Size == "extralarge" || x.Size == "mega"));
this.Images = new List<Image>() { img };
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment