aboutsummaryrefslogtreecommitdiff
path: root/src/zenhttp/packageformat.cpp
diff options
context:
space:
mode:
authorDan Engelbrecht <[email protected]>2026-02-27 21:22:00 +0100
committerGitHub Enterprise <[email protected]>2026-02-27 21:22:00 +0100
commitc32b6042dee8444f4e214f227005a657ec87531e (patch)
tree2e133cfd7156f3a5ce757d51f0742dda090bbf3b /src/zenhttp/packageformat.cpp
parentAdd test summary table and failure reporting to xmake test (#794) (diff)
downloadzen-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.cpp2
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
{