fix: background uploads queuing not working properly (#209)

Fix the sync/async detection to ensure that handle the server side projects properly. The routine was incorrectly uploading sync files with the async routine and vice-versa.
This commit is contained in:
Luis Uguina
2020-04-15 17:40:51 +10:00
committed by GitHub
parent 57bc27bdcf
commit 433ed5ed74
2 changed files with 7 additions and 11 deletions

View File

@@ -323,7 +323,7 @@ public class Client {
continue;
}
if (this.renderingJob.isSynchronousUpload() == false) { // power or compute_method job, need to upload right away
if (this.renderingJob.isSynchronousUpload() == true) { // power or compute_method job, need to upload right away
ret = confirmJob(this.renderingJob);
if (ret != Error.Type.OK) {
gui.error("Client::run problem with confirmJob (returned " + ret + ")");