Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fixbug some warnings
  • Loading branch information
fzyzcjy committed Mar 6, 2021
commit 9c3ccff6138a644378e00f8d79ef67b267d84750
4 changes: 2 additions & 2 deletions flutter/lib/src/navigation/sentry_navigator_observer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class SentryNavigatorObserver extends RouteObserver<PageRoute<dynamic>> {
_addBreadcrumb(
type: 'didPush',
from: previousRoute?.settings,
to: route?.settings,
to: route.settings,
);
}

Expand All @@ -66,7 +66,7 @@ class SentryNavigatorObserver extends RouteObserver<PageRoute<dynamic>> {

_addBreadcrumb(
type: 'didPop',
from: route?.settings,
from: route.settings,
to: previousRoute?.settings,
);
}
Expand Down