Update RelationshipSettings Controller, fixes #1605

This commit is contained in:
Daniel Supernault 2020-01-27 21:13:53 -07:00
parent b8e7ac270e
commit 4d2da2f1b0
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7

View file

@ -22,7 +22,7 @@ trait RelationshipSettings
'mode' => 'nullable|string|in:following,followers,hashtags' 'mode' => 'nullable|string|in:following,followers,hashtags'
]); ]);
$mode = $request->input('mode'); $mode = $request->input('mode') ?? 'followers';
$profile = Auth::user()->profile; $profile = Auth::user()->profile;
switch ($mode) { switch ($mode) {
@ -37,10 +37,6 @@ trait RelationshipSettings
case 'hashtags': case 'hashtags':
$data = $profile->hashtagFollowing()->with('hashtag')->simplePaginate(10); $data = $profile->hashtagFollowing()->with('hashtag')->simplePaginate(10);
break; break;
default:
$data = [];
break;
} }
return view('settings.relationships.home', compact('profile', 'mode', 'data')); return view('settings.relationships.home', compact('profile', 'mode', 'data'));