app/post: continue to loop in case of an error (#15418)
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
5be6da2e9a
Коммит
6fd7cb2a80
@@ -399,6 +399,7 @@ func (a *App) FillInPostProps(post *model.Post, channel *model.Channel) *model.A
|
|||||||
team, err := a.Srv().Store.Team().Get(mentioned.TeamId)
|
team, err := a.Srv().Store.Team().Get(mentioned.TeamId)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
mlog.Error("Failed to get team of the channel mention", mlog.String("team_id", channel.TeamId), mlog.String("channel_id", channel.Id), mlog.Err(err))
|
mlog.Error("Failed to get team of the channel mention", mlog.String("team_id", channel.TeamId), mlog.String("channel_id", channel.Id), mlog.Err(err))
|
||||||
|
continue
|
||||||
}
|
}
|
||||||
channelMentionsProp[mentioned.Name] = map[string]interface{}{
|
channelMentionsProp[mentioned.Name] = map[string]interface{}{
|
||||||
"display_name": mentioned.DisplayName,
|
"display_name": mentioned.DisplayName,
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user