Skip to content

Commit

Permalink
fix: push url with query parameter will not get pop result
Browse files Browse the repository at this point in the history
  • Loading branch information
foxsofter committed Oct 23, 2023
1 parent 0589425 commit 86d2225
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/navigator/thrio_navigator_implement.dart
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ class ThrioNavigatorImplement {
.push(url: noQueryUrl, params: ps, animated: animated)
.then((index) {
if (index > 0) {
final routeName = '$index $url';
final routeName = '$index $noQueryUrl';
final routeHistory =
ThrioNavigatorImplement.shared().navigatorState?.history;
final route = routeHistory
Expand Down

0 comments on commit 86d2225

Please sign in to comment.