diff --git a/lib/features/getting_started/container/create_connection.dart b/lib/features/getting_started/container/create_connection.dart index 657a940..559b10f 100644 --- a/lib/features/getting_started/container/create_connection.dart +++ b/lib/features/getting_started/container/create_connection.dart @@ -80,7 +80,11 @@ class _CreateConnectionStepState extends State { }); try { - final response = await http.get(Uri.parse(url)); + final response = await http.get( + Uri.parse( + url.replaceFirst("stremio://", "https://"), + ), + ); if (response.statusCode == 200) { final manifest = json.decode(response.body);