diff --git a/osu.Game/IO/FileStore.cs b/osu.Game/IO/FileStore.cs index 94c9697922..191c97e272 100644 --- a/osu.Game/IO/FileStore.cs +++ b/osu.Game/IO/FileStore.cs @@ -41,7 +41,7 @@ namespace osu.Game.IO try { foreach (var f in Query()) - Storage.Delete(Path.Combine(prefix, f.Hash)); + Storage.Delete(Path.Combine(prefix, f.StoragePath)); } catch { @@ -150,7 +150,7 @@ namespace osu.Game.IO try { Connection.Delete(f); - Storage.Delete(Path.Combine(prefix, f.Hash)); + Storage.Delete(Path.Combine(prefix, f.StoragePath)); } catch (Exception e) {