Merge pull request #12271 from annando/api-suggestion
Issue 12266: APISuggestions should now work
This commit is contained in:
commit
1cecc51796
1 changed files with 4 additions and 1 deletions
|
@ -48,7 +48,10 @@ class Suggestions extends BaseApi
|
||||||
$accounts = [];
|
$accounts = [];
|
||||||
|
|
||||||
foreach ($suggestions as $suggestion) {
|
foreach ($suggestions as $suggestion) {
|
||||||
$accounts[] = DI::mstdnAccount()->createFromContactId($suggestion['id'], $uid);
|
$accounts[] = [
|
||||||
|
'source' => 'past_interactions',
|
||||||
|
'account' => DI::mstdnAccount()->createFromContactId($suggestion['id'], $uid)
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
System::jsonExit($accounts);
|
System::jsonExit($accounts);
|
||||||
|
|
Loading…
Reference in a new issue