File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 4
4
* Mitigated an issue where visibility could have been wrongly assigned if a view was closed while going to background. (Experimental!)
5
5
* Mitigated an issue where the user provided URLSessionConfiguration was not applied to direct requests
6
6
* Mitigated an issue where a concurrent modification error could have happen when starting multiple stopped views
7
+ * Mitigated an issue that parsing internal content event segmentation.
7
8
8
9
## 24.7.7
9
10
* Changed the visibility tracking segmentation values to binary
Original file line number Diff line number Diff line change @@ -208,11 +208,15 @@ - (void)recordEventsWithJSONString:(NSString *)jsonString {
208
208
209
209
for (NSDictionary *event in events) {
210
210
NSString *key = event[@" key" ];
211
- NSDictionary *segmentation = event[@" sg" ];
211
+ NSDictionary *segmentation = event[@" segmentation" ];
212
+ NSDictionary *sg = event[@" sg" ];
212
213
if (!key) {
213
214
CLY_LOG_I (@" Skipping the event due to key is empty or nil" );
214
215
continue ;
215
216
}
217
+ if (sg) {
218
+ segmentation = sg;
219
+ }
216
220
if (!segmentation) {
217
221
CLY_LOG_I (@" Skipping the event due to missing segmentation" );
218
222
continue ;
You can’t perform that action at this time.
0 commit comments