1
0
Fork 0

Update StatusController

This commit is contained in:
Daniel Supernault 2018-12-31 23:02:23 -07:00
parent 2ed9de6912
commit 35e0140e87
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ class StatusController extends Controller
{
public function show(Request $request, $username, int $id)
{
$user = Profile::whereUsername($username)->firstOrFail();
$user = Profile::whereNull('domain')->whereUsername($username)->firstOrFail();
if($user->status != null) {
return ProfileController::accountCheck($user);