From f53e191de3a666afbf2d02d79ab760265ed55c96 Mon Sep 17 00:00:00 2001 From: Mark Date: Fri, 16 Feb 2024 13:23:44 -0800 Subject: [PATCH] Minor fix --- crates/content/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/content/src/lib.rs b/crates/content/src/lib.rs index 70becbf..7d3295d 100644 --- a/crates/content/src/lib.rs +++ b/crates/content/src/lib.rs @@ -137,7 +137,7 @@ impl From for ContentIndex { impl From for ImmutableString { fn from(value: ContentIndex) -> Self { - ImmutableString::from(Arc::into_inner(value.0).unwrap()) + ImmutableString::from(value.0.as_ref().clone()) } }