chore: Update server check job middleware to use server ID instead of UUID
This commit is contained in:
		@@ -47,12 +47,12 @@ class ServerCheckJob implements ShouldBeEncrypted, ShouldQueue
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    public function middleware(): array
 | 
					    public function middleware(): array
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
        return [(new WithoutOverlapping($this->server->uuid))];
 | 
					        return [(new WithoutOverlapping($this->server->id))];
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    public function uniqueId(): int
 | 
					    public function uniqueId(): int
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
        return $this->server->uuid;
 | 
					        return $this->server->id;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    public function handle()
 | 
					    public function handle()
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user