From 821f65c381ac2bcb9a41589df3b781285ca3e2fd Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Tue, 1 Aug 2017 10:20:28 +0900 Subject: [PATCH] Actually delete files --- osu.Game/IO/FileStore.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) {