Skip to content

Commit

Permalink
Break up long line
Browse files Browse the repository at this point in the history
  • Loading branch information
bdach committed Dec 31, 2024
1 parent 684247d commit d26d805
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion osu.Server.BeatmapSubmission/Services/S3BeatmapStorage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,8 @@ public async Task<Stream> PackageBeatmapSetFilesAsync(IEnumerable<PackageFile> f
{
foreach (var file in files)
{
using var response = await client.GetObjectAsync(AppSettings.S3CentralBucketName, getPathToVersionedFile(BitConverter.ToString(file.File.sha2_hash).Replace("-", string.Empty).ToLowerInvariant()));
using var response = await client.GetObjectAsync(AppSettings.S3CentralBucketName,
getPathToVersionedFile(BitConverter.ToString(file.File.sha2_hash).Replace("-", string.Empty).ToLowerInvariant()));
zipWriter.Write(file.VersionFile.filename, response.ResponseStream);
}
}
Expand Down

0 comments on commit d26d805

Please sign in to comment.