diff options
author | Bohdan Horbeshko <bodqhrohro@gmail.com> | 2023-08-28 17:20:50 +0300 |
---|---|---|
committer | Bohdan Horbeshko <bodqhrohro@gmail.com> | 2023-08-28 17:20:50 +0300 |
commit | aa561c5be606c14cfd211df694ef0be856195df7 (patch) | |
tree | 39ccc1a054b71dc1249bb4f8d9dd1909f91e1508 /telegram | |
parent | 20994e29953dfc9c238f69d919912e0c26e36b97 (diff) |
Version 1.8.0v1.8.0
Diffstat (limited to 'telegram')
-rw-r--r-- | telegram/utils.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/telegram/utils.go b/telegram/utils.go index 4d77fc4..47a851a 100644 --- a/telegram/utils.go +++ b/telegram/utils.go @@ -249,15 +249,15 @@ func (c *Client) ProcessStatusUpdate(chatID int64, status string, show string, o presenceType = typ } log.WithFields(log.Fields{ - "show": show, - "status": status, + "show": show, + "status": status, "presenceType": presenceType, }).Debug("Cached status") } else if user != nil && user.Status != nil { show, status, presenceType = c.userStatusToText(user.Status, chatID) log.WithFields(log.Fields{ - "show": show, - "status": status, + "show": show, + "status": status, "presenceType": presenceType, }).Debug("Status to text") } else { |