We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 271996a commit 26b9abaCopy full SHA for 26b9aba
pkg/router.go
@@ -118,6 +118,12 @@ func (r *Router) handleMatrixEvent(evt *event.Event) {
118
return
119
}
120
121
+ // All other events are expected to be handled by the existing conference.
122
+ if conference == nil {
123
+ logger.Warnf("ignoring %s since the conference is unknown", evt.Type.Type)
124
+ return
125
+ }
126
+
127
// A helper function to deal with messages that can't be sent due to the conference closed.
128
// Not a function due to the need to capture local environment.
129
sendToConference := func(eventContent conf.MessageContent) {
0 commit comments