mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Add content size to direct_link and a etag
This commit is contained in:
parent
a729c4f1e0
commit
cd324905dd
@ -184,6 +184,8 @@ public class AuthoredFiles : ControllerBase
|
||||
Response.Headers.ContentDisposition =
|
||||
new StringValues($"attachment; filename={definition.OriginalFileName}");
|
||||
Response.Headers.ContentType = new StringValues("application/octet-stream");
|
||||
Response.Headers.ContentLength = definition.Size;
|
||||
Response.Headers.ETag = definition.MungedName + "_direct";
|
||||
foreach (var part in definition.Parts)
|
||||
{
|
||||
await using var partStream = await _authoredFiles.StreamForPart(mungedName, (int)part.Index);
|
||||
|
Loading…
x
Reference in New Issue
Block a user