Bug fixed in Postie
This commit is contained in:
parent
a888427777
commit
1651a90dea
1 changed files with 2 additions and 2 deletions
|
@ -30,8 +30,8 @@ class Postie {
|
||||||
}
|
}
|
||||||
|
|
||||||
hasTopicAndSubscriber(topic, address) {
|
hasTopicAndSubscriber(topic, address) {
|
||||||
return (this.isTopicExist(topic))
|
return (this.hasTopic(topic))
|
||||||
? this.isSubscriberExist(topic, address)
|
? this.hasSubscriber(topic, address)
|
||||||
: false;
|
: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue