mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-09-06 22:55:45 +08:00
DockerController: also fix warning in the web interface
Signed-off-by: Simon L. <szaimen@e.mail.de>
This commit is contained in:
parent
b3f931f2cf
commit
0d4081ab13
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ readonly class DockerController {
|
|||
{
|
||||
$requestParams = $request->getQueryParams();
|
||||
$id = '';
|
||||
if (is_string($requestParams['id'])) {
|
||||
if (isset($requestParams['id']) && is_string($requestParams['id'])) {
|
||||
$id = $requestParams['id'];
|
||||
}
|
||||
if (str_starts_with($id, 'nextcloud-aio-')) {
|
||||
|
|
Loading…
Add table
Reference in a new issue