Join identifier onto public_endpoint, rather than overwriting the existing path
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
asonix 2024-01-11 16:06:44 -06:00
parent 9ceb26bb5c
commit 708c25f20a

View file

@ -403,10 +403,9 @@ impl Store for ObjectStore {
}
fn public_url(&self, identifier: &Arc<str>) -> Option<url::Url> {
self.public_endpoint.clone().map(|mut endpoint| {
endpoint.set_path(identifier.as_ref());
endpoint
})
self.public_endpoint
.as_ref()
.and_then(|endpoint| endpoint.join(identifier.as_ref()).ok())
}
#[tracing::instrument(skip(self))]