1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 15:33:05 +08:00

Fix collection migration incorrectly running asynchronously

This commit is contained in:
Dean Herbert 2022-07-31 00:53:39 +09:00
parent 471a06883a
commit 8e06d55960

View File

@ -802,8 +802,8 @@ namespace osu.Game.Database
if (legacyCollectionImporter.GetAvailableCount(storage).GetResultSafely() > 0)
{
legacyCollectionImporter.ImportFromStorage(storage);
storage.Delete("collection.db");
legacyCollectionImporter.ImportFromStorage(storage).WaitSafely();
}
}
catch (Exception e)