Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
akurilov committed Nov 16, 2023
1 parent 67500f4 commit 7cb425a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion service/messages/usage.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func (uh UsageHandler) Show(tgCtx telebot.Context) (err error) {
Text: usage.LabelIncrease,
Data: fmt.Sprintf("%s %d", usage.CmdIncrease, awkUsage.SubjectPublishEvents),
}))
err = tgCtx.Send(fmt.Sprintf("Publishing:\nCount Today: %d\nDaily Limit: %d", u.Count, l.Count), m)
err = tgCtx.Send(fmt.Sprintf("Published Today: %d\n(including events from own sources)\nDaily Limit: %d", u.Count, l.Count), m)
}
if err == nil {
m := &telebot.ReplyMarkup{}
Expand Down
2 changes: 1 addition & 1 deletion service/subscriptions/usage.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ func Usage(clientAwk api.Client, groupId string) telebot.HandlerFunc {
Text: "List",
Data: fmt.Sprintf("%s %s", CmdPageNext, CmdDetails),
}))
err = tgCtx.Send(fmt.Sprintf("Subscriptions:\nCount: %d", u.Count), m)
err = tgCtx.Send(fmt.Sprintf("Count: %d", u.Count), m)
}
var l awkUsage.Limit
if err == nil {
Expand Down

0 comments on commit 7cb425a

Please sign in to comment.