Skip to content

Commit 3240601

Browse files
committed
Fix bug when trying to add new subuser.
1 parent 9af06b4 commit 3240601

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ This project follows [Semantic Versioning](http://semver.org) guidelines.
77
### Fixed
88
* `[pre.2]` — Fixes bug where servers could not be manually deployed to nodes due to a broken SQL call.
99
* `[pre.2]` — Fixes inability to edit a server due to owner_id issues.
10+
* `[pre.2]` — Fixes bug when trying to add new subusers.
1011

1112
### Changed
1213
* `[pre.2]` — File Manager now displays relevant information on all screen sizes, and includes better button clicking mechanics for dropdown menu.

app/Repositories/SubuserRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ public function create($sid, array $data)
177177

178178
$server->node->guzzleClient([
179179
'X-Access-Server' => $server->uuid,
180-
'X-Access-Token' => $node->daemonSecret,
180+
'X-Access-Token' => $server->node->daemonSecret,
181181
])->request('PATCH', '/server', [
182182
'json' => [
183183
'keys' => [

0 commit comments

Comments
 (0)