Fix stupid mistake

fuck.
This commit is contained in:
Salman Ahmed 2021-01-13 22:34:48 +03:00
parent 560b1e970c
commit 95acc457aa
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ private BeatmapAvailability(DownloadState state, double? downloadProgress = null
public static BeatmapAvailability NotDownloaded() => new BeatmapAvailability(DownloadState.NotDownloaded);
public static BeatmapAvailability Downloading(double progress) => new BeatmapAvailability(DownloadState.Downloading, progress);
public static BeatmapAvailability Importing() => new BeatmapAvailability(DownloadState.Downloaded);
public static BeatmapAvailability Importing() => new BeatmapAvailability(DownloadState.Importing);
public static BeatmapAvailability LocallyAvailable() => new BeatmapAvailability(DownloadState.LocallyAvailable);
public bool Equals(BeatmapAvailability other) => other != null && State == other.State && DownloadProgress == other.DownloadProgress;