diff --git a/lib/sdk/src/bundle/file.rs b/lib/sdk/src/bundle/file.rs index d5f0c58..2c68185 100644 --- a/lib/sdk/src/bundle/file.rs +++ b/lib/sdk/src/bundle/file.rs @@ -397,7 +397,8 @@ impl From for u64 { } impl From for Murmur64 { fn from(t: BundleFileType) -> Murmur64 { - t.into() + let hash: u64 = t.into(); + Murmur64::from(hash) } }