Update ApiV1Controller, include self likes in favourited_by endpoint

pull/3681/head
Daniel Supernault 3 years ago
parent 46d88385d9
commit 58b331d22e
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -2449,12 +2449,12 @@ class ApiV1Controller extends Controller
->limit($limit)
->get()
->map(function($like) {
$account = AccountService::getMastodon($like->profile_id);
$account = AccountService::getMastodon($like->profile_id, true);
$account['follows'] = isset($like->created_at);
return $account;
})
->filter(function($account) use($user) {
return $account && isset($account['id']) && $account['id'] != $user->profile_id;
return $account && isset($account['id']);
})
->values();

Loading…
Cancel
Save