Don't use deprecated torrent state "allocating"

Closes #13737.
This commit is contained in:
Chocobo1 2020-11-12 00:12:21 +08:00
commit 0be2567d97
No known key found for this signature in database
GPG key ID: 210D9C873253A68C
5 changed files with 0 additions and 16 deletions

View file

@ -722,9 +722,6 @@ void TorrentHandleImpl::updateState()
if (m_nativeStatus.state == lt::torrent_status::checking_resume_data) {
m_state = TorrentState::CheckingResumeData;
}
else if (m_nativeStatus.state == lt::torrent_status::allocating) {
m_state = TorrentState::Allocating;
}
else if (isMoveInProgress()) {
m_state = TorrentState::Moving;
}