-
-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor page navigation #108
Conversation
Src/Sentry.Xamarin.Forms/Internals/FormsNavigationIntegration.cs
Outdated
Show resolved
Hide resolved
Src/Sentry.Xamarin.Forms/Internals/SentryXamarinFormsIntegration.cs
Outdated
Show resolved
Hide resolved
/// </summary> | ||
public void Invoke() => | ||
//Don't lock the main Thread while waiting for the current application to be created. | ||
Task.Run(async () => |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yikes. I see this was in the old code and you are just refactoring, but we really shouldn't completely lose this task. It should be saved somewhere. We should also register it for cancellation so it can be shut down gracefully. I'm OK if this is done in a future PR, but wanted to point it out.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approved with suggested changes.
Close #99.