Fix possible crash in failed media resume.

This commit is contained in:
John Preston 2019-12-30 13:39:18 +03:00
parent 4aaecfd531
commit c13e433e65
1 changed files with 1 additions and 1 deletions

View File

@ -811,7 +811,7 @@ bool Player::buffering() const {
}
bool Player::paused() const {
return _pausedByUser;
return _pausedByUser && active();
}
bool Player::finished() const {