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 thread_sender = new Thread(runnable_sender);
|
||||||
thread_sender.start();
|
thread_sender.start();
|
||||||
|
|
||||||
this.renderingJob = null;
|
|
||||||
|
|
||||||
while (this.running == true) {
|
while (this.running == true) {
|
||||||
|
this.renderingJob = null;
|
||||||
synchronized (this) {
|
synchronized (this) {
|
||||||
while (this.suspended) {
|
while (this.suspended) {
|
||||||
wait();
|
wait();
|
||||||
|
|||||||
Reference in New Issue
Block a user