mirror of
https://github.com/nbd-wtf/nostr-tools.git
synced 2025-12-08 16:28:49 +00:00
fix filter matching for tags.
This commit is contained in:
@@ -8,7 +8,9 @@ export function matchFilter(filter, event) {
|
|||||||
if (f[0] === '#') {
|
if (f[0] === '#') {
|
||||||
if (
|
if (
|
||||||
filter[f] &&
|
filter[f] &&
|
||||||
!event.tags.find(([t, v]) => t === f.slice(1) && v === filter[f])
|
!event.tags.find(
|
||||||
|
([t, v]) => t === f.slice(1) && filter[f].indexOf(v) !== -1
|
||||||
|
)
|
||||||
)
|
)
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "nostr-tools",
|
"name": "nostr-tools",
|
||||||
"version": "0.16.1",
|
"version": "0.16.2",
|
||||||
"description": "Tools for making a Nostr client.",
|
"description": "Tools for making a Nostr client.",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|||||||
Reference in New Issue
Block a user