do not compare exact sources and destination file size at Move
This commit is contained in:
parent
b9564a98f8
commit
ffc24897d0
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ class CopyMoveTask(val activity: BaseSimpleActivity, val deleteAfterCopy: Boolea
|
|||
|
||||
copyStream(inputStream, out)
|
||||
activity.scanFile(destination) {}
|
||||
if (source.length() == destination.length())
|
||||
if (destination.length() > 0)
|
||||
mMovedFiles.add(source)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue