Merge pull request #5624 from fabrixxm/fix/api-seen
api: fix `friendica/notification/seen` api call
This commit is contained in:
commit
2b67e8e80d
1 changed files with 1 additions and 1 deletions
|
@ -5635,7 +5635,7 @@ function api_friendica_notification_seen($type)
|
|||
if ($note['otype']=='item') {
|
||||
// would be really better with an ItemsManager and $im->getByID() :-P
|
||||
$item = Item::selectFirstForUser(api_user(), [], ['id' => $note['iid'], 'uid' => api_user()]);
|
||||
if (DBA::isResult($$item)) {
|
||||
if (DBA::isResult($item)) {
|
||||
// we found the item, return it to the user
|
||||
$ret = api_format_items([$item], $user_info, false, $type);
|
||||
$data = ['status' => $ret];
|
||||
|
|
Loading…
Reference in a new issue