From 1b4a35326ca45c5744e5d1e209d901045be17979 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=89=E5=B3=B0?= Date: Tue, 9 Sep 2025 19:50:18 +0800 Subject: [PATCH] =?UTF-8?q?adjust=E5=88=A4=E6=96=ADnetwork=E6=98=AF?= =?UTF-8?q?=E4=B8=8D=E6=98=AF=E7=A9=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Script/SDKManager/AdjustManager/AdjustManager.cs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Assets/Script/SDKManager/AdjustManager/AdjustManager.cs b/Assets/Script/SDKManager/AdjustManager/AdjustManager.cs index c1edfbb..4dc5bca 100644 --- a/Assets/Script/SDKManager/AdjustManager/AdjustManager.cs +++ b/Assets/Script/SDKManager/AdjustManager/AdjustManager.cs @@ -123,7 +123,15 @@ public class AdjustManager : D_MonoSingleton campaign = attribution.Campaign; adgroup = attribution.Adgroup; creative = attribution.Creative; - network = attribution.Network; + + if (!string.IsNullOrEmpty(attribution.Network)) + { + network = attribution.Network; + } + else + { + network = "Organic"; + } } else {