mirror of
https://github.com/pterodactyl/panel.git
synced 2025-02-01 11:21:35 +01:00
Don't try to store null values in the DB for variables; closes #3038
This commit is contained in:
parent
8e7fcb484c
commit
0ae90eacaa
@ -258,7 +258,7 @@ class ServerCreationService
|
||||
return [
|
||||
'server_id' => $server->id,
|
||||
'variable_id' => $result->id,
|
||||
'variable_value' => $result->value,
|
||||
'variable_value' => $result->value ?? '',
|
||||
];
|
||||
})->toArray();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user