fix a glitch with stuck Copying notification

This commit is contained in:
tibbi 2021-10-24 09:49:08 +02:00
parent eb54a5848b
commit 35f8470267

View file

@ -154,7 +154,7 @@ class CopyMoveTask(
mProgressHandler.postDelayed({
updateProgress()
if (mCurrentProgress / 1000 > mMaxSize) {
if (mCurrentProgress / 1000 >= mMaxSize) {
mIsTaskOver = true
}
}, PROGRESS_RECHECK_INTERVAL)