]> git.mxchange.org Git - friendica.git/commitdiff
api: fix `friendica/notification/seen` api call
authorfabrixxm <fabrix.xm@gmail.com>
Thu, 16 Aug 2018 09:46:53 +0000 (11:46 +0200)
committerfabrixxm <fabrix.xm@gmail.com>
Thu, 16 Aug 2018 09:46:53 +0000 (11:46 +0200)
Fix return item related to notification when notification is set as seen

include/api.php

index 9fe3cb4bd7bbf525c97d467572b4e461287aca7d..4807a5ce87e281655cf5232663cc95b9d14b86fb 100644 (file)
@@ -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];