Merge pull request #1911 from pterodactyl/fix/encrypter
Fix encryption issue when creating new nodes
This commit is contained in:
commit
b2847eb0e0
1 changed files with 2 additions and 2 deletions
|
@ -41,8 +41,8 @@ class NodeCreationService
|
||||||
*/
|
*/
|
||||||
public function handle(array $data)
|
public function handle(array $data)
|
||||||
{
|
{
|
||||||
$data['daemon_token'] = Str::random(Node::DAEMON_TOKEN_LENGTH);
|
$data['daemon_token'] = $this->encrypter->encrypt(Str::random(Node::DAEMON_TOKEN_LENGTH));
|
||||||
$data['daemon_token_id'] = $this->encrypter->encrypt(Str::random(Node::DAEMON_TOKEN_ID_LENGTH));
|
$data['daemon_token_id'] = Str::random(Node::DAEMON_TOKEN_ID_LENGTH);
|
||||||
|
|
||||||
return $this->repository->create($data, true, true);
|
return $this->repository->create($data, true, true);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue