Skip to content

Commit

Permalink
Remove unused argument. (flutter#5471)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbaranov authored Jun 5, 2018
1 parent 1be8766 commit cce4fd2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ private boolean loadIntent(Intent intent, boolean reuseIsolate) {
flutterView.setInitialRoute(route);
}
if (!flutterView.getFlutterNativeView().isApplicationRunning()) {
flutterView.runFromBundle(appBundlePath, intent.getStringExtra("snapshot"), "main", reuseIsolate);
flutterView.runFromBundle(appBundlePath, null, "main", reuseIsolate);
}
return true;
}
Expand Down

0 comments on commit cce4fd2

Please sign in to comment.