Fixed buffering issue

This commit is contained in:
Alex Kim
2024-10-14 05:17:52 +11:00
parent a71832c6e5
commit 7fe7e4e321
2 changed files with 3 additions and 1 deletions

View File

@@ -529,7 +529,7 @@ extension VlcPlayerView: VLCMediaPlayerDelegate {
stateInfo["state"] = "Paused"
}
if player.state == .buffering && player.isPlaying {
if player.state == .buffering {
stateInfo["isBuffering"] = true
stateInfo["state"] = "Buffering"
}