Fixed to big file size

This commit is contained in:
Ziver Koc 2017-08-23 10:31:31 +02:00
parent 96921e6b59
commit 0165d3b370

View file

@ -122,6 +122,6 @@ public class UeBehaviourFtpUpload extends UeBehaviourFtp {
}
private boolean isLong(String str){
return sizeOrFile != null && Pattern.matches("\\d{1,19}", str);
return sizeOrFile != null && Pattern.matches("\\d{1,18}", str);
}
}