Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-12-27 20:54:41 +08:00
parent 25acf3a9bb
commit b51c646415
227 changed files with 768 additions and 764 deletions

View File

@@ -191,7 +191,7 @@ class LiveRoomController extends GetxController {
currentQn ??= await Utils.isWiFi
? Pref.liveQuality
: Pref.liveQualityCellular;
var res = await LiveHttp.liveRoomInfo(
final res = await LiveHttp.liveRoomInfo(
roomId: roomId,
qn: currentQn,
onlyAudio: plPlayerController.onlyPlayAudio.value,
@@ -234,7 +234,7 @@ class LiveRoomController extends GetxController {
}
Future<void> queryLiveInfoH5() async {
var res = await LiveHttp.liveRoomInfoH5(roomId: roomId);
final res = await LiveHttp.liveRoomInfoH5(roomId: roomId);
if (res.isSuccess) {
final data = res.data;
roomInfoH5.value = data;
@@ -506,7 +506,7 @@ class LiveRoomController extends GetxController {
likeClickTime.value = 0;
return;
}
var res = await LiveHttp.liveLikeReport(
final res = await LiveHttp.liveLikeReport(
clickTime: likeClickTime.value,
roomId: roomId,
uid: mid,