1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-15 19:45:43 +08:00

Merge pull request #12722 from bdach/fix-beatmap-listing-temporary-files

Fix temporary files from beatmap downloads not being cleaned up
This commit is contained in:
Dean Herbert 2021-05-09 04:51:48 +09:00 committed by GitHub
commit ea066cddc9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,6 +23,8 @@ namespace osu.Game.Online.API.Requests
return req; return req;
} }
protected override string FileExtension => ".osz";
protected override string Target => $@"beatmapsets/{Model.OnlineBeatmapSetID}/download{(noVideo ? "?noVideo=1" : "")}"; protected override string Target => $@"beatmapsets/{Model.OnlineBeatmapSetID}/download{(noVideo ? "?noVideo=1" : "")}";
} }
} }