mirror of
https://github.com/friendica/friendica
synced 2025-04-26 15:10:11 +00:00
Reshared data now is a link
This commit is contained in:
parent
42dcd6646e
commit
206caaf51a
4 changed files with 18 additions and 14 deletions
|
@ -419,12 +419,6 @@ class Post
|
|||
}
|
||||
}
|
||||
|
||||
if (!empty($item['reshared'])) {
|
||||
$reshared = $item['reshared'];
|
||||
} else {
|
||||
$reshared = '';
|
||||
}
|
||||
|
||||
$tmp_item = [
|
||||
'template' => $this->getTemplate(),
|
||||
'type' => implode("", array_slice(explode("/", $item['verb']), -1)),
|
||||
|
@ -503,7 +497,7 @@ class Post
|
|||
'uriid' => $item['uri-id'],
|
||||
'return' => (DI::args()->getCommand()) ? bin2hex(DI::args()->getCommand()) : '',
|
||||
'direction' => $direction,
|
||||
'reshared' => $reshared,
|
||||
'reshared' => $item['reshared'] ?? '',
|
||||
'delivery' => [
|
||||
'queue_count' => $item['delivery_queue_count'],
|
||||
'queue_done' => $item['delivery_queue_done'] + $item['delivery_queue_failed'], /// @todo Possibly display it separately in the future
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue