From 399bed75768f216e4ae96c7baee914221069f073 Mon Sep 17 00:00:00 2001 From: Boy132 Date: Sun, 12 May 2024 16:41:38 +0200 Subject: [PATCH] fix typo --- app/Services/Servers/ServerConfigurationStructureService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Services/Servers/ServerConfigurationStructureService.php b/app/Services/Servers/ServerConfigurationStructureService.php index 7b06aca36..535f4b439 100644 --- a/app/Services/Servers/ServerConfigurationStructureService.php +++ b/app/Services/Servers/ServerConfigurationStructureService.php @@ -61,7 +61,7 @@ class ServerConfigurationStructureService 'disk_space' => $server->disk, // This field is deprecated — use "oom_killer". 'oom_disabled' => !$server->oom_killer, - 'oom_killer' => !$server->oom_killer, + 'oom_killer' => $server->oom_killer, ], 'container' => [ 'image' => $server->image,