mirror of
https://github.com/liamcottle/reticulum-meshchat.git
synced 2026-04-28 00:20:48 +00:00
skip announces if we don't want to show them
This commit is contained in:
parent
f2a44a1cc6
commit
75bbf24182
1 changed files with 6 additions and 0 deletions
|
|
@ -301,6 +301,12 @@ export default {
|
|||
continue;
|
||||
}
|
||||
|
||||
// skip announces if we don't want to show them
|
||||
const aspectsToShow = ["lxmf.delivery", "nomadnetwork.node"];
|
||||
if(!aspectsToShow.includes(announce.aspect)){
|
||||
continue;
|
||||
}
|
||||
|
||||
const node = {
|
||||
id: entry.hash,
|
||||
group: "announce",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue