Skip to content

Commit de1d950

Browse files
committed
fix error when resetting daemon secret, closes pterodactyl#915
1 parent 0b00895 commit de1d950

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
@@ -9,6 +9,7 @@ This project follows [Semantic Versioning](http://semver.org) guidelines.
99
* `[rc.1]` — Fixes exception that would occur when trying to delete allocations from a node.
1010
* `[rc.1]` — Fixes exception thown when attempting to adjust mail settings as well as a validation error thrown afterwards.
1111
* `[rc.1]` — Fixes bug preventing modification of the default value for an Egg variable.
12+
* `[rc.1]` — Fixed a bug that would occur when attempting to reset the daemon secret for a node.
1213

1314
## v0.7.0-rc.1 (Derelict Dermodactylus)
1415
### Fixed

app/Repositories/Daemon/ConfigurationRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function update(array $overrides = []): ResponseInterface
2828
'port' => $node->daemonSFTP,
2929
],
3030
'remote' => [
31-
'base' => $this->config->get('app.url'),
31+
'base' => config('app.url'),
3232
],
3333
'uploads' => [
3434
'size_limit' => $node->upload_size,

0 commit comments

Comments
 (0)