From 8dbd301a196041a36be455c1b4cedc81f0d634fe Mon Sep 17 00:00:00 2001 From: Stefan Boberg Date: Mon, 12 Dec 2022 13:34:51 +0100 Subject: Changed so CompressedBuffer::DecodeRawHash returns IoHash just like on the UE side (#208) removed all use of IoHash::FromBLAKE3() caused by interactions with CompressedBuffer APIs --- zenhttp/httpshared.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'zenhttp/httpshared.cpp') diff --git a/zenhttp/httpshared.cpp b/zenhttp/httpshared.cpp index 568585639..b6346413f 100644 --- a/zenhttp/httpshared.cpp +++ b/zenhttp/httpshared.cpp @@ -560,7 +560,7 @@ CbPackageReader::Finalize() { CompressedBuffer Compressed = CompressedBuffer::Compress(SharedBuffer(ChunkReference), OodleCompressor::NotSet, OodleCompressionLevel::None); - m_Attachments.push_back(CbAttachment(std::move(Compressed), IoHash::FromBLAKE3(Compressed.DecodeRawHash()))); + m_Attachments.push_back(CbAttachment(std::move(Compressed), Compressed.DecodeRawHash())); } } -- cgit v1.2.3