note_follows: remove unneeded derefence

Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
William Casarin
2025-07-14 14:16:05 -07:00
parent e4ca67127e
commit c4084c4117

View File

@@ -49,7 +49,7 @@ fn note_follows(contacts_note: Note<'_>, pk: &[u8; 32]) -> bool {
continue;
};
if *pk == *author {
if pk == author {
return true;
}
}