From f42743eb0c521f2f74f88913b7c0d3621cf7f4b3 Mon Sep 17 00:00:00 2001 From: huangjiajun <582604932@qq.com> Date: Fri, 31 May 2024 17:52:38 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AC=AC=E4=B8=89=E6=96=B9=E6=8A=96=E5=AE=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tik_tok/order.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tik_tok/order.go b/tik_tok/order.go index 598f795..effb1e0 100644 --- a/tik_tok/order.go +++ b/tik_tok/order.go @@ -98,10 +98,10 @@ func CsjpCommOrder(v interface{}, statusArr map[string]string, types string) map tmp["is_share"] = "6" } tmp["uid"] = split[1] - if len(split) == 3 { + if len(split) >= 3 { tmp["mid"] = split[2] } - if len(split) == 4 { + if len(split) >= 4 { tmp["team_type"] = split[3] } }