diff options
| author | Dan Engelbrecht <[email protected]> | 2026-02-27 21:22:00 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2026-02-27 21:22:00 +0100 |
| commit | c32b6042dee8444f4e214f227005a657ec87531e (patch) | |
| tree | 2e133cfd7156f3a5ce757d51f0742dda090bbf3b /src/zenhttp/packageformat.cpp | |
| parent | Add test summary table and failure reporting to xmake test (#794) (diff) | |
| download | zen-c32b6042dee8444f4e214f227005a657ec87531e.tar.xz zen-c32b6042dee8444f4e214f227005a657ec87531e.zip | |
add multirange requests to blob store (#795)
* add multirange requests to blob store
Diffstat (limited to 'src/zenhttp/packageformat.cpp')
| -rw-r--r-- | src/zenhttp/packageformat.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zenhttp/packageformat.cpp b/src/zenhttp/packageformat.cpp index 708238224..9a80d07c8 100644 --- a/src/zenhttp/packageformat.cpp +++ b/src/zenhttp/packageformat.cpp @@ -581,7 +581,7 @@ ParsePackageMessage(IoBuffer Payload, std::function<IoBuffer(const IoHash&, uint ZEN_ASSERT(AttachmentBufferCopy.Size() == AttachmentSize); AttachmentBufferCopy.GetMutableView().CopyFrom(AttachmentBuffer.GetView()); - Attachments.emplace_back(SharedBuffer{AttachmentBufferCopy}); + Attachments.emplace_back(CbAttachment(SharedBuffer{AttachmentBufferCopy}, Entry.AttachmentHash)); } else { |