diff --git a/deltachat-ffi/src/dc_array.rs b/deltachat-ffi/src/dc_array.rs index 7c5d87a5e..d481eff97 100644 --- a/deltachat-ffi/src/dc_array.rs +++ b/deltachat-ffi/src/dc_array.rs @@ -42,7 +42,7 @@ impl dc_array_t { pub(crate) fn get_marker(&self, index: usize) -> Option<&str> { match self { Self::MsgIds(_) => None, - Self::Chat(array) => None, + Self::Chat(_) => None, Self::Locations(array) => array .get(index) .and_then(|location| location.marker.as_deref()),