Merge pull request #436 from fermionic/api-mark-timeline-read
update items seen in DB when using API
This commit is contained in:
commit
31bd0557cb
|
@ -755,6 +755,15 @@
|
||||||
|
|
||||||
$ret = api_format_items($r,$user_info);
|
$ret = api_format_items($r,$user_info);
|
||||||
|
|
||||||
|
// We aren't going to try to figure out at the item, group, and page
|
||||||
|
// level which items you've seen and which you haven't. If you're looking
|
||||||
|
// at the network timeline just mark everything seen.
|
||||||
|
|
||||||
|
$r = q("UPDATE `item` SET `unseen` = 0
|
||||||
|
WHERE `unseen` = 1 AND `uid` = %d",
|
||||||
|
intval($user_info['uid'])
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
$data = array('$statuses' => $ret);
|
$data = array('$statuses' => $ret);
|
||||||
switch($type){
|
switch($type){
|
||||||
|
|
Loading…
Reference in a new issue