1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-22 11:02:56 +08:00

Add missing early return

As spotted in testing with production. Would cause submission to proceed
even if the export did, with an empty archive.
This commit is contained in:
Bartłomiej Dach 2025-02-18 11:33:30 +01:00
parent 98ff4e054a
commit b3aba537b5
No known key found for this signature in database

View File

@ -249,6 +249,7 @@ namespace osu.Game.Screens.Edit.Submission
exportProgressNotification = null;
Logger.Log($"Beatmap set submission failed on export: {ex}");
allowExit();
return;
}
exportStep.SetCompleted();