Skip to content

Commit 231c7a4

Browse files
committed
change default value to current behavior
1 parent a7bf51d commit 231c7a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Crashlytics/Crashlytics/Models/FIRCLSSettings.m

+2-2
Original file line numberDiff line numberDiff line change
@@ -358,12 +358,12 @@ - (uint32_t)onDemandBackoffStepDuration {
358358
}
359359

360360
- (BOOL)onDemandThreadSuspensionEnabled {
361-
NSNumber *value = self.settingsDictionary[@"on_demand_thread_suspension_enabled"];
361+
NSNumber *value = self.settingsDictionary[@"on_demand_thread_recording_suspension_enabled"];
362362

363363
if (value != nil) {
364364
return value.boolValue;
365365
}
366366

367-
return NO;
367+
return YES;
368368
}
369369
@end

0 commit comments

Comments
 (0)