fix a glitch with stuck Copying notification
This commit is contained in:
parent
eb54a5848b
commit
35f8470267
1 changed files with 1 additions and 1 deletions
|
@ -154,7 +154,7 @@ class CopyMoveTask(
|
|||
mProgressHandler.postDelayed({
|
||||
updateProgress()
|
||||
|
||||
if (mCurrentProgress / 1000 > mMaxSize) {
|
||||
if (mCurrentProgress / 1000 >= mMaxSize) {
|
||||
mIsTaskOver = true
|
||||
}
|
||||
}, PROGRESS_RECHECK_INTERVAL)
|
||||
|
|
Loading…
Reference in a new issue