fix: video tabbar length

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2024-12-23 21:45:19 +08:00
parent c79364cef2
commit 952f1429eb
2 changed files with 6 additions and 2 deletions

View File

@@ -1351,6 +1351,10 @@ class PlPlayerController {
}
static void updatePlayCount() {
_instance?._playerCount.value -= 1;
if (_instance?._playerCount.value == 1) {
_instance?.dispose();
} else {
_instance?._playerCount.value -= 1;
}
}
}