Fix panic in federationsender consumer

This commit is contained in:
Neil Alexander 2021-11-16 09:25:36 +00:00
parent 58b831ad36
commit ddbef7c3ff
No known key found for this signature in database
GPG key ID: A02A2019A2BB0944

View file

@ -95,6 +95,12 @@ func (t *KeyChangeConsumer) onMessage(msg *sarama.ConsumerMessage) error {
}
func (t *KeyChangeConsumer) onDeviceKeyMessage(m api.DeviceMessage) error {
if m.DeviceKeys == nil && m.OutputCrossSigningKeyUpdate == nil {
// This probably shouldn't happen but stops us from panicking if we come
// across an update that doesn't satisfy either types.
return nil
}
logger := logrus.WithField("user_id", m.UserID)
// only send key change events which originated from us