Hide my own notes from Inbox > Everything

This commit is contained in:
Daniele Tonon 2024-05-03 18:12:47 +02:00
parent d995784b90
commit 68067672bf

View File

@ -435,6 +435,11 @@ impl Feed {
return true;
}
// exclude if it's my own note
if e.pubkey == my_pubkey {
return false;
}
// Include if it directly replies to one of my events
match e.replies_to() {
Some(EventReference::Id { id, .. }) => {