all repos — escarbot @ 52c9b07a1684492fa7d561bdc8901ee088d39dcb

Earthbound Café's custom Telegram bot, with lots of cool utilities built-in.

minor bugfix
Marco Andronaco andronacomarco@gmail.com
Mon, 11 Nov 2024 17:29:08 +0100
commit

52c9b07a1684492fa7d561bdc8901ee088d39dcb

parent

c2036032ccc0aab5ed29ee6e428f539617a79c30

1 files changed, 2 insertions(+), 1 deletions(-)

jump to
M telegram/replace.gotelegram/replace.go

@@ -71,7 +71,8 @@ } else if e.Type == "url" {

if isInSpoiler(entities, e.Offset, e.Length) { continue } - rawLinks += text[e.Offset:e.Length] + "\n" + + rawLinks += text[e.Offset:e.Offset+e.Length] + "\n" } }