Skip to content

Commit 22ba6cb

Browse files
committed
Fix subuser URL redirect, closes pterodactyl#723
1 parent e945033 commit 22ba6cb

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
* `[beta.1]` — Fixes a CORS header issue due to a wrong API endpoint being provided in the administrative node listing.
99
* `[beta.1]` — Fixes bug that would prevent root admins from accessing servers they were not set as the owner of.
10+
* `[beta.1]` — Fixes wrong URL redirect being provided when creating a subuser.
1011

1112
## v0.7.0-beta.1 (Derelict Dermodactylus)
1213
### Added

app/Http/Controllers/Server/SubuserController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ public function store(SubuserStoreFormRequest $request): RedirectResponse
172172

173173
return redirect()->route('server.subusers.view', [
174174
'uuid' => $server->uuid,
175-
'id' => $subuser->id,
175+
'id' => $subuser->hashid,
176176
]);
177177
}
178178

0 commit comments

Comments
 (0)