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
{{ message }}
This repository was archived by the owner on Jun 11, 2022. It is now read-only.
/**
* 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;
}