Version 1.6.0
This commit is contained in:
parent
79fc0ddbe5
commit
00f1417cb2
|
@ -92,7 +92,7 @@ func toKeyPrefix(tgAccount, xmppAccount string) []byte {
|
|||
}
|
||||
|
||||
func toByteKey(prefix, suffix []byte, typ string) []byte {
|
||||
key := make([]byte, 0, len(prefix) + len(suffix) + 6)
|
||||
key := make([]byte, 0, len(prefix)+len(suffix)+6)
|
||||
key = append(key, prefix...)
|
||||
key = append(key, []byte(typ)...)
|
||||
key = append(key, []byte("/")...)
|
||||
|
|
|
@ -15,7 +15,7 @@ import (
|
|||
goxmpp "gosrc.io/xmpp"
|
||||
)
|
||||
|
||||
var version string = "1.6.0-dev"
|
||||
var version string = "1.6.0"
|
||||
var commit string
|
||||
|
||||
var sm *goxmpp.StreamManager
|
||||
|
|
|
@ -652,7 +652,7 @@ func (c *Client) ProcessChatCommand(chatID int64, cmdline string) (string, bool)
|
|||
keyValueString("Chat title", info.Fn),
|
||||
keyValueString("Photo", link),
|
||||
keyValueString("Username", info.Nickname),
|
||||
keyValueString("Full name", info.Given + " " + info.Family),
|
||||
keyValueString("Full name", info.Given+" "+info.Family),
|
||||
keyValueString("Phone number", info.Tel),
|
||||
}
|
||||
return strings.Join(entries, "\n"), true
|
||||
|
|
|
@ -274,7 +274,7 @@ func (c *Client) updateAuthorizationState(update *client.UpdateAuthorizationStat
|
|||
func (c *Client) updateMessageSendSucceeded(update *client.UpdateMessageSendSucceeded) {
|
||||
log.Debugf("replace message %v with %v", update.OldMessageId, update.Message.Id)
|
||||
if err := gateway.IdsDB.ReplaceTgId(c.Session.Login, c.jid, update.Message.ChatId, update.OldMessageId, update.Message.Id); err != nil {
|
||||
log.Error("failed to replace %v with %v: %v", update.OldMessageId, update.Message.Id, err.Error())
|
||||
log.Errorf("failed to replace %v with %v: %v", update.OldMessageId, update.Message.Id, err.Error())
|
||||
}
|
||||
|
||||
file, _ := c.contentToFile(update.Message.Content)
|
||||
|
|
|
@ -225,7 +225,7 @@ func HandleMessage(s xmpp.Sender, p stanza.Packet) {
|
|||
suffix := "@" + msg.From
|
||||
for bare := range sessions {
|
||||
if strings.HasSuffix(bare, suffix) {
|
||||
gateway.SendServiceMessage(bare, "Your server \"" + msg.From + "\" does not allow to send carbons", component)
|
||||
gateway.SendServiceMessage(bare, "Your server \""+msg.From+"\" does not allow to send carbons", component)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue