adjust判断network是不是空
This commit is contained in:
parent
c164fa4a46
commit
1b4a35326c
|
@ -123,7 +123,15 @@ public class AdjustManager : D_MonoSingleton<AdjustManager>
|
||||||
campaign = attribution.Campaign;
|
campaign = attribution.Campaign;
|
||||||
adgroup = attribution.Adgroup;
|
adgroup = attribution.Adgroup;
|
||||||
creative = attribution.Creative;
|
creative = attribution.Creative;
|
||||||
network = attribution.Network;
|
|
||||||
|
if (!string.IsNullOrEmpty(attribution.Network))
|
||||||
|
{
|
||||||
|
network = attribution.Network;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
network = "Organic";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue