fix: movie content

This commit is contained in:
Simon Ding
2024-07-16 14:41:55 +08:00
parent 81ebcb4870
commit 9dd8cb2d21
2 changed files with 6 additions and 2 deletions

View File

@@ -208,7 +208,7 @@ class MovieTorrentResource
if (rsp.code != 0) {
throw rsp.message;
}
return (resp.data as List).map((v) => TorrentResource.fromJson(v)).toList();
return (rsp.data as List).map((v) => TorrentResource.fromJson(v)).toList();
}
Future<void> download(String link) async {