mirror of
https://github.com/friendica/friendica
synced 2025-04-24 05:10:11 +00:00
Simplified signature creation
This commit is contained in:
parent
a26a2a0228
commit
835152d418
2 changed files with 14 additions and 9 deletions
|
@ -1061,13 +1061,7 @@ class Item
|
|||
|
||||
// Create Diaspora signature
|
||||
if ($item['origin'] && empty($item['diaspora_signed_text']) && ($item['gravity'] != GRAVITY_PARENT)) {
|
||||
if ($uid == 0) {
|
||||
$sender_contact = Contact::getById($item['contact-id'], ['uid']);
|
||||
$sender_uid = $sender_contact['uid'];
|
||||
} else {
|
||||
$sender_uid = $uid;
|
||||
}
|
||||
$signed = Diaspora::createCommentSignature($sender_uid, $item);
|
||||
$signed = Diaspora::createCommentSignature($item);
|
||||
if (!empty($signed)) {
|
||||
$item['diaspora_signed_text'] = json_encode($signed);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue