diff --git a/crates/notedeck_ui/src/contacts.rs b/crates/notedeck_ui/src/contacts.rs index 160ab59d..9c7d2077 100644 --- a/crates/notedeck_ui/src/contacts.rs +++ b/crates/notedeck_ui/src/contacts.rs @@ -49,7 +49,7 @@ fn note_follows(contacts_note: Note<'_>, pk: &[u8; 32]) -> bool { continue; }; - if *pk == *author { + if pk == author { return true; } }