From 0823b72accdde4f1812a45beb061ce61e18c15b3 Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Sun, 1 Mar 2020 15:28:11 +0100 Subject: Add timestamps to backlogged messages --- connector/mattermost/mattermost.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'connector/mattermost') diff --git a/connector/mattermost/mattermost.go b/connector/mattermost/mattermost.go index d39768e..6c0e091 100644 --- a/connector/mattermost/mattermost.go +++ b/connector/mattermost/mattermost.go @@ -454,7 +454,7 @@ func (mm *Mattermost) processBacklog(ch *model.Channel, backlog *model.PostList) post := backlog.Posts[post_id] post_time := time.Unix(post.CreateAt/1000, 0) post.Message = fmt.Sprintf("[%s] %s", - post_time.Format("2006-01-02 15:04:05 MST"), post.Message) + post_time.Format("2006-01-02 15:04 MST"), post.Message) mm.handlePost(ch.Name, post, true) } } -- cgit v1.2.3