workaround for null bytes
This commit is contained in:
@@ -62,6 +62,9 @@ class Navbar extends Component
|
|||||||
|
|
||||||
public function checkDeployments()
|
public function checkDeployments()
|
||||||
{
|
{
|
||||||
|
try {
|
||||||
|
// TODO: This is a temporary solution. We need to refactor this.
|
||||||
|
// We need to delete null bytes somehow.
|
||||||
$activity = Activity::where('properties->type_uuid', $this->service->uuid)->latest()->first();
|
$activity = Activity::where('properties->type_uuid', $this->service->uuid)->latest()->first();
|
||||||
$status = data_get($activity, 'properties.status');
|
$status = data_get($activity, 'properties.status');
|
||||||
if ($status === 'queued' || $status === 'in_progress') {
|
if ($status === 'queued' || $status === 'in_progress') {
|
||||||
@@ -69,6 +72,9 @@ class Navbar extends Component
|
|||||||
} else {
|
} else {
|
||||||
$this->isDeploymentProgress = false;
|
$this->isDeploymentProgress = false;
|
||||||
}
|
}
|
||||||
|
} catch (\Throwable $e) {
|
||||||
|
$this->isDeploymentProgress = false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public function start()
|
public function start()
|
||||||
|
|||||||
Reference in New Issue
Block a user