Skip to content

Commit 32d4e10

Browse files
committed
Correct maximum caption size in heta
1 parent 1b4e136 commit 32d4e10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hikka/modules/unit_heta.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ async def heta(self, message: Message):
317317

318318
text = strings.format(**kwargs)
319319

320-
if len(text) > 4096:
320+
if len(text) > 2048:
321321
kwargs["commands"] = "..."
322322
text = strings.format(**kwargs)
323323

0 commit comments

Comments
 (0)