File tree Expand file tree Collapse file tree 1 file changed +4
-10
lines changed
integration-test/net9-maui Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -21,17 +21,11 @@ public static MauiApp CreateMauiApp()
2121 options . SendClientReports = false ;
2222 options . AutoSessionTracking = false ;
2323
24- // Only check breadcrumbs for non-crash tests...
25- var testArg = System . Environment . GetEnvironmentVariable ( "SENTRY_TEST_ARG" ) ;
26- if ( ! Enum . TryParse < CrashType > ( testArg , ignoreCase : true , out var crashType ) )
24+ options . SetBeforeBreadcrumb ( ( breadcrumb , hint ) =>
2725 {
28- options . SetBeforeBreadcrumb ( ( breadcrumb , hint ) =>
29- {
30- App . ReceiveSystemBreadcrumb ( breadcrumb ) ;
31- return breadcrumb ;
32- } ) ;
33- }
34- } )
26+ App . ReceiveSystemBreadcrumb ( breadcrumb ) ;
27+ return breadcrumb ;
28+ } ) ; } )
3529 . ConfigureFonts ( fonts =>
3630 {
3731 fonts . AddFont ( "OpenSans-Regular.ttf" , "OpenSansRegular" ) ;
You can’t perform that action at this time.
0 commit comments