Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

v3 beta bug: onQueueComplete triggered before onUploadComplete
  • When an upload finishes onUploadComplete is triggered.
    When the last item in a queue has been uploaded onQueueComplete is triggered.
    But shouldn't it also happen in that order? With the current beta of v3 it seems that onQueueComplete is triggered before onUploadComplete. Technically this should be impossible, since the queue can't be empty before all uploads have finished.
  • In onUploadComplete() there is a wrong condition check, causing the behavior you found.

    Change line 331:
    from: "if (swfuploadify.queue.uploadQueue.length > 0) {"
    to: "if (swfuploadify.queue.queueLength > 0) {"

    And keep posting Watson;)