mod: handle http2https

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2024-12-29 15:16:33 +08:00
parent 85733e071b
commit a6cb49fd02
14 changed files with 54 additions and 39 deletions

View File

@@ -84,12 +84,14 @@ class _FavSearchPageState extends State<FavSearchPage> {
return FavVideoCardH(
videoItem: loadingState.response[index],
searchType: _favSearchCtr.type,
callFn: () => _favSearchCtr.type != 1
? _favSearchCtr.onCancelFav(
loadingState.response[index].id!,
loadingState.response[index].type,
)
: {},
callFn: _favSearchCtr.type != 1
? () {
_favSearchCtr.onCancelFav(
loadingState.response[index].id!,
loadingState.response[index].type,
);
}
: null,
);
},
childCount: loadingState.response.length,