Validate param
This commit is contained in:
parent
70897c0e9a
commit
13f381710c
|
@ -15,6 +15,8 @@ export default class extends Channel {
|
||||||
|
|
||||||
const q: Array<string[]> = params.q;
|
const q: Array<string[]> = params.q;
|
||||||
|
|
||||||
|
if (q == null) return;
|
||||||
|
|
||||||
// Subscribe stream
|
// Subscribe stream
|
||||||
this.subscriber.on('hashtag', async note => {
|
this.subscriber.on('hashtag', async note => {
|
||||||
const matched = q.some(tags => tags.every(tag => note.tags.map((t: string) => t.toLowerCase()).includes(tag.toLowerCase())));
|
const matched = q.some(tags => tags.every(tag => note.tags.map((t: string) => t.toLowerCase()).includes(tag.toLowerCase())));
|
||||||
|
|
Loading…
Reference in New Issue