You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/**
* Check if given topic is online.
* @PARAM topicName - Name of the topic to test.
*/
isTopicOnline(topicName: string): boolean {
const me = this.getMeTopic();
const cont = me && me.getContact(name);
return cont && cont.online;
}
/**
* Check if given topic is online.
* @PARAM topicName - Name of the topic to test.
*/
isTopicOnline(topicName: string): boolean {
const me = this.getMeTopic();
const cont = me && me.getContact(name);
return cont && cont.online;
}