remove extra rule

This commit is contained in:
ghost 2024-02-18 00:07:48 +02:00
parent 7e37eda9df
commit 0d513a30ca

View File

@ -588,7 +588,7 @@ class RoomController extends AbstractController
}
/// Validate funds available yet
if (1 > $client->getBalance())
if ($client->getBalance())
{
return $this->redirectToRoute(
'room_namespace',
@ -949,7 +949,7 @@ class RoomController extends AbstractController
}
// Validate funds available yet
if (1 > $client->getBalance())
if ($client->getBalance())
{
return $this->redirectToRoute(
'room_list',