From 6e79959929798d28fa2e841f25b4b2632e6479e3 Mon Sep 17 00:00:00 2001 From: Laurent Clouet Date: Fri, 7 Oct 2022 00:37:45 +0200 Subject: [PATCH] Fix: do not wait for no-error type --- src/main/java/com/sheepit/client/Client.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/sheepit/client/Client.java b/src/main/java/com/sheepit/client/Client.java index 37e21cd..78c3665 100644 --- a/src/main/java/com/sheepit/client/Client.java +++ b/src/main/java/com/sheepit/client/Client.java @@ -701,7 +701,7 @@ import okhttp3.HttpUrl; // no exception should be raised to actual launcher (applet or standalone) } - if (error != null && (error == Error.Type.RENDERER_CRASHED || error == Error.Type.RENDERER_KILLED_BY_USER + if (error != null && (error == Error.Type.RENDERER_CRASHED || error == Error.Type.RENDERER_KILLED_BY_USER || error == Type.OK || error == Type.RENDERER_KILLED_BY_USER_OVER_TIME || error == Error.Type.RENDERER_KILLED_BY_SERVER || error == Type.MISSING_SCENE)) { // do nothing, we can ask for a job right away }