mirror of
https://github.com/friendica/friendica
synced 2025-04-28 00:30:10 +00:00
The owner of a "like" should be the author
This commit is contained in:
parent
ce4204e81a
commit
510032444f
2 changed files with 4 additions and 7 deletions
|
@ -3111,7 +3111,7 @@ class Item extends BaseObject
|
|||
return true;
|
||||
}
|
||||
|
||||
$objtype = $item['resource-id'] ? ACTIVITY_OBJ_IMAGE : ACTIVITY_OBJ_NOTE ;
|
||||
$objtype = $item['resource-id'] ? ACTIVITY_OBJ_IMAGE : ACTIVITY_OBJ_NOTE;
|
||||
|
||||
$new_item = [
|
||||
'guid' => System::createUUID(),
|
||||
|
@ -3125,7 +3125,7 @@ class Item extends BaseObject
|
|||
'parent' => $item['id'],
|
||||
'parent-uri' => $item['uri'],
|
||||
'thr-parent' => $item['uri'],
|
||||
'owner-id' => $item['owner-id'],
|
||||
'owner-id' => $author_id,
|
||||
'author-id' => $author_id,
|
||||
'body' => $activity,
|
||||
'verb' => $activity,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue