mirror of
https://github.com/madari-media/madari-oss.git
synced 2026-05-09 22:50:43 +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 {
|
try {
|
||||||
final response = await http.get(Uri.parse(url));
|
final response = await http.get(
|
||||||
|
Uri.parse(
|
||||||
|
url.replaceFirst("stremio://", "https://"),
|
||||||
|
),
|
||||||
|
);
|
||||||
if (response.statusCode == 200) {
|
if (response.statusCode == 200) {
|
||||||
final manifest = json.decode(response.body);
|
final manifest = json.decode(response.body);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue