Skip to content
Snippets Groups Projects
Commit a033d75d authored by sveseli's avatar sveseli
Browse files

file size can be zero

parents 292b1217 379739f1
No related branches found
No related tags found
No related merge requests found
......@@ -69,7 +69,7 @@ class GridftpFileTransferPlugin(FileTransferPlugin):
# Check size
fSize = filePathDict.get('fileSize')
sfSize = storageFilePathDict.get('fileSize')
if not fSize or not sfSize or fSize != sfSize:
if fSize is None or sfSize is None or fSize != sfSize:
# Sizes differ, need to transfer file
continue
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment