Closed GoogleCodeExporter closed 9 years ago
[deleted comment]
Proposed Solution:
MultiUploader.java
...
IUploader.OnStatusChangedHandler statusChangeHandler = new
IUploader.OnStatusChangedHandler() {
public void onStatusChanged(IUploader uploader) {
Uploader u = (Uploader) uploader;
if (u.getStatus() == Status.CHANGED) {
...
}
...
else if (u.getStatus() == Status.DELETED) { // add this case
// check if we're back below the limit
if (getNonErroneousUploads() < maximumFiles) {
newUploaderInstance();
}
}
...
} else {
...
}
}
};
Original comment by cengiz.o...@studyo3k.com
on 21 Jun 2012 at 7:30
Original comment by manuel.carrasco.m
on 3 Dec 2012 at 7:47
Release 0.6.5 has not the issue, please update to it.
Thanks for reporting
Original comment by manuel.carrasco.m
on 3 Dec 2012 at 7:56
Original issue reported on code.google.com by
cengiz.o...@studyo3k.com
on 21 Jun 2012 at 7:13