Do not look up metadata for locally-modified beatmaps on save

This commit is contained in:
Bartłomiej Dach
2023-04-11 21:42:55 +02:00
parent e58e1151f3
commit e72f103c17
6 changed files with 50 additions and 14 deletions

View File

@ -36,7 +36,7 @@ namespace osu.Game.Beatmaps
var matchingSet = r.All<BeatmapSetInfo>().FirstOrDefault(s => s.OnlineID == id);
if (matchingSet != null)
beatmapUpdater.Queue(matchingSet.ToLive(realm), true);
beatmapUpdater.Queue(matchingSet.ToLive(realm), MetadataLookupScope.OnlineFirst);
}
});
}