workflows: do not truncate SMS messages anymore (#39587)

This commit is contained in:
Frédéric Péters 2020-03-28 17:40:21 +01:00
parent db0a045e3e
commit 531a1489b1
1 changed files with 1 additions and 1 deletions

View File

@ -2759,7 +2759,7 @@ class SendSMSWorkflowStatusItem(WorkflowStatusItem):
sender = sms_cfg.get('sender', 'AuQuotidien')[:11]
mode = sms_cfg.get('mode', 'none')
try:
sms.SMS.get_sms_class(mode).send(sender, destinations, sms_body[:160])
sms.SMS.get_sms_class(mode).send(sender, destinations, sms_body)
except errors.SMSError as e:
get_logger().error(e)