The "id" field is now filled in the notifications. This is needed for the new condensed notifications.

This commit is contained in:
Michael Vogel 2015-04-26 14:43:42 +02:00
parent 7ec2161567
commit bcd20d5763
4 changed files with 12 additions and 0 deletions

View File

@ -701,6 +701,8 @@ function appnet_fetchstream($a, $uid) {
$postarray = appnet_createpost($a, $uid, $post, $me, $user, $ownid, true);
$item = item_store($postarray);
$postarray["id"] = $item;
logger('appnet_fetchstream: User '.$uid.' posted stream item '.$item);
$lastid = $post["id"];
@ -763,6 +765,8 @@ function appnet_fetchstream($a, $uid) {
$parent_id = $postarray['parent'];
} elseif (isset($postarray["body"])) {
$item = item_store($postarray);
$postarray["id"] = $item;
$parent_id = 0;
logger('appnet_fetchstream: User '.$uid.' posted mention item '.$item);
} else {
@ -896,6 +900,8 @@ function appnet_createpost($a, $uid, $post, $me, $user, $ownid, $createuser, $th
foreach ($thread AS $tpost) {
$threadpost = appnet_createpost($a, $uid, $tpost, $me, $user, $ownid, false, false);
$item = item_store($threadpost);
$threadpost["id"] = $item;
logger("appnet_createpost: stored post ".$post["id"]." thread ".$post["thread_id"]." in item ".$item, LOGGER_DEBUG);
}
//}

View File

@ -1250,6 +1250,7 @@ function pumpio_dopost(&$a, $client, $uid, $self, $post, $own_id, $threadcomplet
return false;
$top_item = item_store($postarray);
$postarray["id"] = $top_item;
if (($top_item == 0) AND ($post->verb == "update")) {
$r = q("UPDATE `item` SET `title` = '%s', `body` = '%s' , `changed` = '%s' WHERE `uri` = '%s' AND `uid` = %d",

View File

@ -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);

View File

@ -1623,6 +1623,7 @@ function twitter_fetchhometimeline($a, $uid) {
continue;
$item = item_store($postarray);
$postarray["id"] = $item;
logger('twitter_fetchhometimeline: User '.$self["nick"].' posted home timeline item '.$item);
@ -1666,6 +1667,7 @@ function twitter_fetchhometimeline($a, $uid) {
continue;
$item = item_store($postarray);
$postarray["id"] = $item;
if (!isset($postarray["parent"]) OR ($postarray["parent"] == 0))
$postarray["parent"] = $item;