diff options
Diffstat (limited to 'src/zenhttp/httpclient.cpp')
| -rw-r--r-- | src/zenhttp/httpclient.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zenhttp/httpclient.cpp b/src/zenhttp/httpclient.cpp index 1a5955609..969395427 100644 --- a/src/zenhttp/httpclient.cpp +++ b/src/zenhttp/httpclient.cpp @@ -758,8 +758,8 @@ HttpClient::TransactPackage(std::string_view Url, CbPackage Package, const KeyVa // First, list of offered chunks for filtering on the server end - eastl::vector<IoHash> AttachmentsToSend; - std::span<const CbAttachment> Attachments = Package.GetAttachments(); + eastl::vector<IoHash> AttachmentsToSend; + eastl::span<const CbAttachment> Attachments = Package.GetAttachments(); const uint32_t RequestId = ++HttpClientRequestIdCounter; auto RequestIdString = fmt::to_string(RequestId); |