Update ProfileController

pull/1009/head
Daniel Supernault 6 years ago
parent 76e0a76ab0
commit bf90263259
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

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

Loading…
Cancel
Save