Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1042,6 +1042,11 @@ void NGMP_OnlineServicesManager::InitSentry()
}, nullptr);
#endif

// Disable the crash handler backend to prevent it from attempting to
// initialize Windows UI components (SystemNavigationManagerStatics::GetForCurrentView)
// on a non-UI thread during sentry_init(), which causes an access violation.
sentry_options_set_backend(options, nullptr);

sentry_init(options);
#endif
}
Expand Down
Loading