Update ProfileController

pull/864/head
Daniel Supernault 7 years ago
parent e5b7c3c97d
commit 74268874ca
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

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

Loading…
Cancel
Save