The two endpoints for unfavoriting/liking (and related things) was failing because it wasn't using the correct uuid in item.php in processing the action.

This commit is contained in:
Hank Grabowski 2022-11-21 16:38:54 -05:00 committed by Hypolite Petovan
parent d2ba254a5a
commit 548fd3201d
1 changed files with 1 additions and 1 deletions

View File

@ -2693,7 +2693,7 @@ class Item
}
$condition = ['vid' => $vids, 'deleted' => false, 'gravity' => self::GRAVITY_ACTIVITY,
'author-id' => $author_id, 'uid' => $item['uid'], 'thr-parent-id' => $uri_id];
'author-id' => $author_id, 'uid' => $uid, 'thr-parent-id' => $uri_id];
$like_item = Post::selectFirst(['id', 'guid', 'verb'], $condition);
if (DBA::isResult($like_item)) {