Browse Source

Amend: put `.string()` back

I have no idea why it disappeared
ellipticcurv3/kbtui
ellipticcurv3 5 years ago
parent
commit
01bb599f56
No known key found for this signature in database
GPG Key ID: 52866F2EC2ABD789
  1. 2
      main.go

2
main.go

@ -606,7 +606,7 @@ func handleMessage(api keybase.ChatAPI) { @@ -606,7 +606,7 @@ func handleMessage(api keybase.ChatAPI) {
if api.Msg.Channel.MembersType == channel.MembersType && cleanChannelName(api.Msg.Channel.Name) == channel.Name {
if channel.MembersType == keybase.USER || channel.MembersType == keybase.TEAM && channel.TopicName == api.Msg.Channel.TopicName &&
channel.TopicType == api.Msg.Channel.TopicType {
printToView("Chat", formatOutput(api))
printToView("Chat", formatOutput(api).string())
chat := k.NewChat(channel)
lastMessage.ID = api.Msg.ID
chat.Read(api.Msg.ID)

Loading…
Cancel
Save