mirror of
https://github.com/madari-media/madari-oss.git
synced 2026-01-11 22:40:23 +00:00
Project import generated by Copybara.
GitOrigin-RevId: 0aa083a646372724abb921fac3fffa34e02ff460
This commit is contained in:
parent
2cba15132b
commit
0891e8eddf
1 changed files with 5 additions and 1 deletions
|
|
@ -80,7 +80,11 @@ class _CreateConnectionStepState extends State<CreateConnectionStep> {
|
|||
});
|
||||
|
||||
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);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue