aboutsummaryrefslogtreecommitdiff
path: root/telegram/utils.go
diff options
context:
space:
mode:
authorBohdan Horbeshko <bodqhrohro@gmail.com>2023-08-28 17:20:50 +0300
committerBohdan Horbeshko <bodqhrohro@gmail.com>2023-08-28 17:20:50 +0300
commitaa561c5be606c14cfd211df694ef0be856195df7 (patch)
tree39ccc1a054b71dc1249bb4f8d9dd1909f91e1508 /telegram/utils.go
parent20994e29953dfc9c238f69d919912e0c26e36b97 (diff)
Version 1.8.0v1.8.0
Diffstat (limited to 'telegram/utils.go')
-rw-r--r--telegram/utils.go8
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 {