fix: 🐛
This commit is contained in:
parent
dbcb48d599
commit
ce2976e3f9
1 changed files with 4 additions and 1 deletions
|
|
@ -100,7 +100,10 @@ class ClientService extends EventTarget {
|
|||
specifiedRelayUrls.forEach((url) => relaySet.add(url))
|
||||
} else {
|
||||
additionalRelayUrls?.forEach((url) => relaySet.add(url))
|
||||
if (!specifiedRelayUrls?.length && ![kinds.Contacts, kinds.Mutelist].includes(event.kind)) {
|
||||
if (
|
||||
!specifiedRelayUrls?.length &&
|
||||
![kinds.Contacts, kinds.Mutelist, ExtendedKind.PINNED_USERS].includes(event.kind)
|
||||
) {
|
||||
const mentions: string[] = []
|
||||
event.tags.forEach(([tagName, tagValue]) => {
|
||||
if (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue