Update RelationshipSettings Controller, fixes #1605

pull/1967/head
Daniel Supernault 6 years ago
parent b8e7ac270e
commit 4d2da2f1b0
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -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'));

Loading…
Cancel
Save