Skip to content

Commit

Permalink
Add emojis in ping string
Browse files Browse the repository at this point in the history
just a test for update module
  • Loading branch information
celestix committed Aug 11, 2022
1 parent 52403f7 commit 73c0402
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/misc.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ func ping(ctx *ext.Context, u *ext.Update) error {
timeThen := time.Now()
utils.TelegramClient.Ping(ctx)
timeNow := time.Since(timeThen)
text := entityhelper.Plain("PONG\n").Code(strconv.FormatInt(timeNow.Milliseconds(), 10) + "ms")
text := entityhelper.Plain("🧭PONG🧭\n").Code(strconv.FormatInt(timeNow.Milliseconds(), 10) + "ms")
ctx.EditMessage(u.EffectiveChat().GetID(), &tg.MessagesEditMessageRequest{
ID: u.EffectiveMessage.ID,
Message: text.String,
Expand Down

0 comments on commit 73c0402

Please sign in to comment.