projects
/
cinny.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a888427
)
Bug fixed in Postie
author
unknown
<ajbura@gmail.com>
Sun, 12 Sep 2021 03:42:59 +0000
(09:12 +0530)
committer
unknown
<ajbura@gmail.com>
Sun, 12 Sep 2021 03:42:59 +0000
(09:12 +0530)
src/util/Postie.js
patch
|
blob
|
history
diff --git
a/src/util/Postie.js
b/src/util/Postie.js
index c3bf80645ad0cd470940902bf6b6b021cf830e9a..668408dd5f04de5d8668568d496038c6d644c72f 100644
(file)
--- a/
src/util/Postie.js
+++ b/
src/util/Postie.js
@@
-30,8
+30,8
@@
class Postie {
}
hasTopicAndSubscriber(topic, address) {
- return (this.
isTopicExist
(topic))
- ? this.
isSubscriberExist
(topic, address)
+ return (this.
hasTopic
(topic))
+ ? this.
hasSubscriber
(topic, address)
: false;
}