update: 优化 review_creative_id, 没有的话不上报
Signed-off-by: huyufei <yufei.hu@castbox.fm>
parent
c489786038
commit
ca036ba584
|
|
@ -69,11 +69,9 @@ namespace Guru
|
|||
{
|
||||
creativeId = creativeId.Substring(0, MAX_VALUE_LENGTH);
|
||||
}
|
||||
if (string.IsNullOrEmpty(reviewCreativeId))
|
||||
{
|
||||
reviewCreativeId = VALUE_NOT_SET;
|
||||
}
|
||||
else if(reviewCreativeId.Length > MAX_VALUE_LENGTH)
|
||||
|
||||
if (!string.IsNullOrEmpty(reviewCreativeId)
|
||||
&& reviewCreativeId.Length > MAX_VALUE_LENGTH)
|
||||
{
|
||||
reviewCreativeId = reviewCreativeId.Substring(0, MAX_VALUE_LENGTH);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue