From 900f5687bbbbab2ac4e3e38ec293e28a15e134e1 Mon Sep 17 00:00:00 2001 From: Simon Redman Date: Sat, 12 Sep 2020 14:41:37 -0700 Subject: [PATCH] Revert changing "messageBody" field to "textMessage" --- plugins/sms/smsplugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/sms/smsplugin.cpp b/plugins/sms/smsplugin.cpp index 50faaf4a2..261d0f5ef 100644 --- a/plugins/sms/smsplugin.cpp +++ b/plugins/sms/smsplugin.cpp @@ -67,7 +67,7 @@ void SmsPlugin::sendSms(const QVariantList& addresses, const QString& textMessag // If there is any text message add it to the network packet if (textMessage != QStringLiteral("")) { - packetMap[QStringLiteral("textMessage")] = textMessage; + packetMap[QStringLiteral("messageBody")] = textMessage; } if (subID != -1) {