fix(api): duplicated logs in application endpoint (#6292)

This commit is contained in:
Yanluis Fermin 2025-08-11 08:03:46 -04:00 committed by GitHub
parent 9ec72e8769
commit e572017d27
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1101,7 +1101,7 @@ function getContainerLogs(Server $server, string $container_id, int $lines = 100
], $server);
}
$output .= removeAnsiColors($output);
$output = removeAnsiColors($output);
return $output;
}