From f6bd7edee6fa0e321205ff11abb54e002e4eaa1a Mon Sep 17 00:00:00 2001 From: Pavel Perestoronin Date: Mon, 24 Apr 2023 18:51:12 +0200 Subject: [PATCH] Fix: correct UCS2 part length following #184, fixes #216 --- smpplib/consts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smpplib/consts.py b/smpplib/consts.py index 2987354..8218d93 100644 --- a/smpplib/consts.py +++ b/smpplib/consts.py @@ -6,7 +6,7 @@ # SMPP 3.4, 2.2.1.2 SEVENBIT_LENGTH = 160 EIGHTBIT_LENGTH = 140 -UCS2_LENGTH = 70 +UCS2_LENGTH = 140 MULTIPART_HEADER_SIZE = 6