mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-07 00:48:55 +00:00
The "id" field is now filled in the notifications. This is needed for the new condensed notifications.
This commit is contained in:
parent
7ec2161567
commit
bcd20d5763
4 changed files with 12 additions and 0 deletions
|
@ -1422,6 +1422,7 @@ function statusnet_fetchhometimeline($a, $uid) {
|
|||
continue;
|
||||
|
||||
$item = item_store($postarray);
|
||||
$postarray["id"] = $item;
|
||||
|
||||
logger('statusnet_fetchhometimeline: User '.$self["nick"].' posted home timeline item '.$item);
|
||||
|
||||
|
@ -1471,6 +1472,7 @@ function statusnet_fetchhometimeline($a, $uid) {
|
|||
continue;
|
||||
|
||||
$item = item_store($postarray);
|
||||
$postarray["id"] = $item;
|
||||
|
||||
logger('statusnet_fetchhometimeline: User '.$self["nick"].' posted mention timeline item '.$item);
|
||||
}
|
||||
|
@ -1535,6 +1537,7 @@ function statusnet_complete_conversation($a, $uid, $self, $create_user, $nick, $
|
|||
|
||||
//print_r($postarray);
|
||||
$item = item_store($postarray);
|
||||
$postarray["id"] = $item;
|
||||
|
||||
logger('statusnet_complete_conversation: User '.$self["nick"].' posted home timeline item '.$item);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue