forked from nostr/nostrweb
feed: ignore vmess protocol messages
Drop encrypted vmess messages.
parent
2fa7cce511
commit
77711d655d
|
@ -152,6 +152,10 @@ const handleReply = (evt: EventWithNip19, relay: string) => {
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleTextNote = (evt: Event, relay: string) => {
|
const handleTextNote = (evt: Event, relay: string) => {
|
||||||
|
if (evt.content.startsWith('vmess://') && !evt.content.includes(' ')) {
|
||||||
|
console.info('drop VMESS encrypted message');
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (eventRelayMap[evt.id]) {
|
if (eventRelayMap[evt.id]) {
|
||||||
eventRelayMap[evt.id] = [...(eventRelayMap[evt.id]), relay]; // TODO: just push?
|
eventRelayMap[evt.id] = [...(eventRelayMap[evt.id]), relay]; // TODO: just push?
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue