Skip to content

Commit

Permalink
Fix issue where SITE MD5 was always disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesdejager committed Sep 9, 2022
1 parent 1428b78 commit 18df978
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/storage/rooter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,14 @@ where
{
type Metadata = Delegate::Metadata;

fn name(&self) -> &str {
self.inner.name()
}

fn supported_features(&self) -> u32 {
self.inner.supported_features()
}

async fn metadata<P: AsRef<Path> + Send + Debug>(&self, user: &User, path: P) -> Result<Self::Metadata> {
let path = Self::new_path(user, path.as_ref());
self.inner.metadata(user, path).await
Expand Down

0 comments on commit 18df978

Please sign in to comment.