diff --git a/app/Notifications/AddedToServer.php b/app/Notifications/AddedToServer.php index 2ecaa45f3..7b6cac8ca 100644 --- a/app/Notifications/AddedToServer.php +++ b/app/Notifications/AddedToServer.php @@ -56,6 +56,6 @@ class AddedToServer extends Notification implements ShouldQueue ->greeting('Hello ' . $this->server->user . '!') ->line('You have been added as a subuser for the following server, allowing you certain control over the server.') ->line('Server Name: ' . $this->server->name) - ->action('Visit Server', route('server.index', $this->server->uuidShort)); + ->action('Visit Server', url('/server/' . $this->server->uuidShort)); } }