From 8c897971bf967fd23d7db0020fd32ed52e476220 Mon Sep 17 00:00:00 2001 From: pppscn <35696959@qq.com> Date: Fri, 12 Jan 2024 15:28:27 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=EF=BC=9A`=E9=A3=9E=E4=B9=A6?= =?UTF-8?q?=E7=BE=A4=E6=9C=BA=E5=99=A8=E4=BA=BA`=E5=92=8C`=E9=A3=9E?= =?UTF-8?q?=E4=B9=A6=E4=BC=81=E4=B8=9A=E5=BA=94=E7=94=A8`=E6=94=AF?= =?UTF-8?q?=E6=8C=81=E8=87=AA=E5=AE=9A=E4=B9=89`=E6=B6=88=E6=81=AF?= =?UTF-8?q?=E5=8D=A1=E7=89=87`=E6=A8=A1=E6=9D=BF=20#381?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/src/main/java/com/idormy/sms/forwarder/entity/MsgInfo.kt | 1 - 1 file changed, 1 deletion(-) diff --git a/app/src/main/java/com/idormy/sms/forwarder/entity/MsgInfo.kt b/app/src/main/java/com/idormy/sms/forwarder/entity/MsgInfo.kt index 4974f6f9..c7f09f19 100644 --- a/app/src/main/java/com/idormy/sms/forwarder/entity/MsgInfo.kt +++ b/app/src/main/java/com/idormy/sms/forwarder/entity/MsgInfo.kt @@ -232,7 +232,6 @@ data class MsgInfo( private fun jsonInnerStr(string: String?): String { if (string == null) return "null" - if (string == "") return "\"\"" val jsonStr: String = Gson().toJson(string) return if (jsonStr.length >= 2) jsonStr.substring(1, jsonStr.length - 1) else jsonStr