Skip to content

Commit

Permalink
Fix: Missing image previews for missing beatmaps
Browse files Browse the repository at this point in the history
  • Loading branch information
Piotrekol committed Jul 15, 2022
1 parent 39a24ee commit 797033b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion App/Presenters/Controls/BeatmapThumbnailPresenter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ private void LoadData(BeatmapExtension beatmap)
if (imgPath != "")
img = Image.FromFile(imgPath);
else if (beatmap.MapSetId > 0)
url = "https://assets.ppy.sh//beatmaps/"+beatmap.MapSetId+"/covers/card.jpg";
url = "https://assets.ppy.sh/beatmaps/"+beatmap.MapSetId+"/covers/card.jpg";
if (currentId != Interlocked.Read(ref changeId))
{
img?.Dispose();
Expand Down

0 comments on commit 797033b

Please sign in to comment.