Bugfix: When the client is paused, the server still send render kill request because renderingJob is not reseted
This commit is contained in:
@@ -141,9 +141,8 @@ public class Client {
|
||||
Thread thread_sender = new Thread(runnable_sender);
|
||||
thread_sender.start();
|
||||
|
||||
this.renderingJob = null;
|
||||
|
||||
while (this.running == true) {
|
||||
this.renderingJob = null;
|
||||
synchronized (this) {
|
||||
while (this.suspended) {
|
||||
wait();
|
||||
|
||||
Reference in New Issue
Block a user