From 69646a160d8597944c307334901f0acfd32582c5 Mon Sep 17 00:00:00 2001 From: Duco van Amstel Date: Sun, 7 Oct 2018 14:22:15 +0100 Subject: Add Gateway's name to RemoteNickFormat (#501) In order to support extra use cases we should add the `{GATEWAY}` tag to the `RemoteNickFormat` string which would be replaced by the value of the `name=` field from a gateway's configuration. This is _very_ useful when you are forwarding, for example, multiple channels from one chat to a single channel on another one (one-way). It will help you identify the source channel of a message on the target chat. --- matterclient/matterclient.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'matterclient') diff --git a/matterclient/matterclient.go b/matterclient/matterclient.go index b86fbe3d..fbe331e9 100644 --- a/matterclient/matterclient.go +++ b/matterclient/matterclient.go @@ -344,7 +344,7 @@ func (m *MMClient) parseActionPost(rmsg *Message) { data := model.PostFromJson(strings.NewReader(rmsg.Raw.Data["post"].(string))) // we don't have the user, refresh the userlist if m.GetUser(data.UserId) == nil { - m.log.Infof("User %s is not known, ignoring message %s", data) + m.log.Infof("User %s is not known, ignoring message %s", data.UserId, data.Message) return } rmsg.Username = m.GetUserName(data.UserId) -- cgit v1.2.3