mirror of
https://github.com/scsibug/nostr-rs-relay.git
synced 2024-11-09 21:29:06 -05:00
fix: send EOSE when authors list is empty in subscriptions
Fixes: https://todo.sr.ht/~gheartsfield/nostr-rs-relay/49
This commit is contained in:
parent
d0f63dc66e
commit
4de7490d97
10
src/db.rs
10
src/db.rs
|
@ -471,8 +471,14 @@ fn query_from_filter(f: &ReqFilter) -> (String, Vec<Box<dyn ToSql>>) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
let authors_clause = format!("({})", auth_searches.join(" OR "));
|
if authvec.len() > 0 {
|
||||||
filter_components.push(authors_clause);
|
let authors_clause = format!("({})", auth_searches.join(" OR "));
|
||||||
|
filter_components.push(authors_clause);
|
||||||
|
} else {
|
||||||
|
// if the authors list was empty, we should never return
|
||||||
|
// any results.
|
||||||
|
filter_components.push("false".to_owned());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// Query for Kind
|
// Query for Kind
|
||||||
if let Some(ks) = &f.kinds {
|
if let Some(ks) = &f.kinds {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user