You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Are there event filters before onevent is called? I'm seeing the events on the websocket and receivedEvent is called but onevent is not for the messages.
onevent is only called once for each event, we only parse the event once and ignore duplicates. receivedEvent is called for everything, but only with the id and relay it came from.
From your logs it looks like you're closing the subscription you have before the events arrive, so onevent can't be called anymore.
That cleaning up log is from the previous subscription. A new one is created anytime the hashtags change. Is the duplicate check at the relay level or subscription? If previous events persisted at the relay level that might explain why onevent is not called.
Are there event filters before onevent is called? I'm seeing the events on the websocket and receivedEvent is called but onevent is not for the messages.
and console log shows only receivedEvent
The text was updated successfully, but these errors were encountered: