Minor fix

master
Mark 2024-02-16 13:23:44 -08:00
parent a86b57d85c
commit f53e191de3
Signed by: Mark
GPG Key ID: C6D63995FE72FD80
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ impl From<ImmutableString> for ContentIndex {
impl From<ContentIndex> for ImmutableString { impl From<ContentIndex> for ImmutableString {
fn from(value: ContentIndex) -> Self { fn from(value: ContentIndex) -> Self {
ImmutableString::from(Arc::into_inner(value.0).unwrap()) ImmutableString::from(value.0.as_ref().clone())
} }
} }