1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-19 01:10:05 +08:00

Merge pull request #20013 from peppy/always-reprocess-beatmap-after-update

Always reprocess beatmaps after a user update request
This commit is contained in:
Dan Balasescu
2022-08-29 18:50:27 +09:00
committed by GitHub
Unverified
+7
View File
@@ -55,7 +55,14 @@ namespace osu.Game.Beatmaps
// If there were no changes, ensure we don't accidentally nuke ourselves.
if (first.ID == original.ID)
{
first.PerformRead(s =>
{
// Re-run processing even in this case. We might have outdated metadata.
ProcessBeatmap?.Invoke((s, false));
});
return first;
}
first.PerformWrite(updated =>
{