Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
Always open the URL that was validated at the controller level and was used to initialize the manifest.
  • Loading branch information
PrimozRatej committed Jan 27, 2025
1 parent 173f475 commit 238b113
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/pages/web_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class WebViewAppState extends ConsumerState<WebView> {
UniversalOpenerController controller = args;
ref.read(humHubProvider).setInstance(controller.humhub);
_manifest = controller.humhub.manifest!;
url = _manifest.startUrl;
url = controller.url;
}
if (args == null) {
_manifest = m.MyRouter.initParams;
Expand Down

0 comments on commit 238b113

Please sign in to comment.