Fix possible panic in mattermost. (mattermost) Fixes #1947 (#2014)

This commit is contained in:
Wim 2023-03-11 18:55:29 +01:00 committed by GitHub
parent f345eeae55
commit 8587fa8585
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ func (b *Bmattermost) Send(msg config.Message) (string, error) {
if err != nil {
b.Log.Errorf("getting post %s failed: %s", msg.ParentID, err)
}
if post.RootId != "" {
if post != nil && post.RootId != "" {
msg.ParentID = post.RootId
}
}