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
atrifat/nostr-filter uses classification data from atrifat/nostr-monitoring-tool to filter note events. Recently, it has language filter support. However there is condition of incorrect note filtering since atrifat/nostr-filter waiting language classification data. Current implementation: await publishNostrEvent(pool, relaysToPublish, ev); in atrifat/nostr-monitoring-tool publish note events immediately to upstream relay before language classification have done.
Solution
Consider move await publishNostrEvent(pool, relaysToPublish, ev); code to the end of function after the last classification (language classification).
The text was updated successfully, but these errors were encountered:
Issue
atrifat/nostr-filter uses classification data from atrifat/nostr-monitoring-tool to filter note events. Recently, it has language filter support. However there is condition of incorrect note filtering since atrifat/nostr-filter waiting language classification data. Current implementation:
await publishNostrEvent(pool, relaysToPublish, ev);
in atrifat/nostr-monitoring-tool publish note events immediately to upstream relay before language classification have done.Solution
Consider move
await publishNostrEvent(pool, relaysToPublish, ev);
code to the end of function after the last classification (language classification).The text was updated successfully, but these errors were encountered: