Browse Source

Update StatusController, change param signature

Daniel Supernault 3 years ago
parent
commit
d820669bd1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Http/Controllers/StatusController.php

+ 1 - 1
app/Http/Controllers/StatusController.php

@@ -28,7 +28,7 @@ use App\Util\Media\License;
 
 class StatusController extends Controller
 {
-	public function show(Request $request, $username, int $id)
+	public function show(Request $request, $username, $id)
 	{
 		$user = Profile::whereNull('domain')->whereUsername($username)->firstOrFail();