1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 05:22:54 +08:00

Use QuerySingle instead of QueryFirst

This commit is contained in:
Dean Herbert 2020-05-03 09:32:33 +09:00
parent b9b5779251
commit 035b513b68

View File

@ -65,7 +65,7 @@ namespace osu.Game.Beatmaps
{
using (var db = new SqliteConnection(storage.GetDatabaseConnectionString("online")))
{
var found = db.QueryFirstOrDefault<CachedOnlineBeatmapLookup>(
var found = db.QuerySingleOrDefault<CachedOnlineBeatmapLookup>(
"SELECT * FROM osu_beatmaps WHERE checksum = @MD5Hash OR beatmap_id = @OnlineBeatmapID OR filename = @Path", beatmap);
if (found != null)