Skip to content

Commit

Permalink
fix: Do not log error when visitors are disabled. (#1049)
Browse files Browse the repository at this point in the history
  • Loading branch information
bgrozev authored Mar 6, 2023
1 parent aafb61b commit 841569f
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,9 @@ class ConferenceIqHandler(
response.vnode = vnode
response.focusJid = it
} ?: run {
// This shouldn't happen. But if it does go on without redirection.
logger.error("No XmppConnectionConfig for vnode=$vnode")
if (vnode != null) {
logger.error("No XmppConnectionConfig for vnode=$vnode")
}
}

response.isReady = focusManager.conferenceRequest(room, query.propertiesMap)
Expand Down

0 comments on commit 841569f

Please sign in to comment.