Skip to content

Commit

Permalink
Merge pull request #429 from Countly/fix_contetns
Browse files Browse the repository at this point in the history
fix: minor fix for if
  • Loading branch information
turtledreams authored Nov 28, 2024
2 parents 72ac899 + ba97a94 commit ad6bd21
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,9 @@ private void eventAction(Map<String, Object> query) {

if (sgJson != null) {
segmentationJson = sgJson;
} else if (segmentationJson == null) {
}

if (segmentationJson == null) {
Log.w(Countly.TAG, "[TransparentActivity] eventAction, event JSON is missing segmentation data event: [" + eventJson + "]");
continue;
}
Expand Down

0 comments on commit ad6bd21

Please sign in to comment.