Fix calculating SHA1 for photo updates

calls
bodqhrohro 4 years ago
parent 1568e29156
commit 97dfd1cc00

@ -137,7 +137,7 @@ func (c *Client) processStatusUpdate(chatID int32, status string, show string, a
hash := sha1.New()
_, err = io.Copy(hash, file)
if err == nil {
photo = string(hash.Sum(nil))
photo = fmt.Sprintf("%x", hash.Sum(nil))
} else {
log.Errorf("Error calculating hash: %v", path)
}

Loading…
Cancel
Save