File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -174,9 +174,9 @@ - (void) populateConfig:(id) json {
174174 [config.sdkInternalLimits setMaxStackTraceLinesPerThread: [maxStackTraceLinesPerThread intValue ]];
175175 }
176176 // Limits End -------------------------------------------
177- NSNumber *setZoneTimerInterval = json[@" setZoneTimerInterval" ];
178- if (setZoneTimerInterval ) {
179- config.content . zoneTimerInterval = [ setZoneTimerInterval intValue ];
177+ NSNumber *timerInt = json[@" setZoneTimerInterval" ];
178+ if (timerInt ) {
179+ [ config.content setZoneTimerInterval: [timerInt intValue ] ];
180180 }
181181 if (json[@" setGlobalContentCallback" ]) {
182182 [config.content setGlobalContentCallback: ^(ContentStatus contentStatus, NSDictionary <NSString *,id > * _Nonnull contentData) {
You can’t perform that action at this time.
0 commit comments