File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 10
10
11
11
- Fix building with Xcode 26 (#5386 )
12
12
- Fix usage of ` @available ` to be ` iOS ` instead of ` iOSApplicationExtension ` (#5361 )
13
+ - Robustness against corrupt launch profile configuration files (#5447 )
13
14
14
15
### Improvements
15
16
Original file line number Diff line number Diff line change 271
271
profileOptions.sessionSampleRate = profilesRate.floatValue ;
272
272
273
273
NSNumber *profilesRand = launchConfig[kSentryLaunchProfileConfigKeyProfilesSampleRand ];
274
- if (profilesRate == nil ) {
274
+ if (profilesRand == nil ) {
275
275
SENTRY_LOG_DEBUG (@" Received a nil configured launch profile sample rand, will not "
276
276
@" start trace profiler for launch." );
277
277
return ;
285
285
}
286
286
287
287
NSNumber *tracesRand = launchConfig[kSentryLaunchProfileConfigKeyTracesSampleRand ];
288
- if (tracesRate == nil ) {
288
+ if (tracesRand == nil ) {
289
289
SENTRY_LOG_DEBUG (@" Received a nil configured launch trace sample rand, will not start "
290
290
@" trace profiler for launch." );
291
291
return ;
You can’t perform that action at this time.
0 commit comments