diff --git a/app/lib/components/web_view_screen.dart b/app/lib/components/web_view_screen.dart index 8939044..990c3c9 100644 --- a/app/lib/components/web_view_screen.dart +++ b/app/lib/components/web_view_screen.dart @@ -37,9 +37,8 @@ class _WebViewScreenState extends State { ..setNavigationDelegate( NavigationDelegate( onNavigationRequest: (request) { - if (request.url - .startsWith("https://canopas.github.io/cloud-gallery/") && - request.url != "https://canopas.github.io/cloud-gallery/") { + if (request.url.startsWith("https://cloud-gallery.canopas.com/") && + request.url != "https://cloud-gallery.canopas.com/") { return NavigationDecision.navigate; } return NavigationDecision.prevent;