summaryrefslogtreecommitdiff
path: root/src/storage/remote/HttpStorage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/storage/remote/HttpStorage.cpp')
-rw-r--r--src/storage/remote/HttpStorage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/storage/remote/HttpStorage.cpp b/src/storage/remote/HttpStorage.cpp
index fce8270f..284e1d72 100644
--- a/src/storage/remote/HttpStorage.cpp
+++ b/src/storage/remote/HttpStorage.cpp
@@ -262,7 +262,7 @@ HttpStorageBackend::get_entry_path(const Digest& key) const
const auto key_str = key.to_string();
const uint8_t digits = 2;
ASSERT(key_str.length() > digits);
- return FMT("{}/{:.{}}/{}", m_url_path, key_str, digits, &key_str[digits]);
+ return FMT("{}{:.{}}/{}", m_url_path, key_str, digits, &key_str[digits]);
}
}