mirror of
https://github.com/friendica/friendica
synced 2025-04-22 17:50:11 +00:00
Merge pull request #10348 from annando/fix-diaspora-comment
Fix commenting on mobile to Diaspora
This commit is contained in:
commit
d99286640d
3 changed files with 11 additions and 13 deletions
|
@ -1060,7 +1060,14 @@ class Item
|
|||
Post\Content::insert($item['uri-id'], $item);
|
||||
}
|
||||
|
||||
// Diaspora signature
|
||||
// Create Diaspora signature
|
||||
if ($item['origin'] && empty($item['diaspora_signed_text'])) {
|
||||
$signed = Diaspora::createCommentSignature($uid, $item);
|
||||
if (!empty($signed)) {
|
||||
$item['diaspora_signed_text'] = json_encode($signed);
|
||||
}
|
||||
}
|
||||
|
||||
if (!empty($item['diaspora_signed_text'])) {
|
||||
DBA::replace('diaspora-interaction', ['uri-id' => $item['uri-id'], 'interaction' => $item['diaspora_signed_text']]);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue