Handling situations where "vid" is empty
This commit is contained in:
parent
6abe7692e5
commit
20b93306ad
2 changed files with 2 additions and 2 deletions
|
@ -771,7 +771,7 @@ function conversation_add_children(array $parents, $block_authors, $order, $uid)
|
||||||
$items = [];
|
$items = [];
|
||||||
|
|
||||||
foreach ($parents AS $parent) {
|
foreach ($parents AS $parent) {
|
||||||
$condition = ["`item`.`parent-uri` = ? AND `item`.`uid` IN (0, ?) AND `vid` != ?",
|
$condition = ["`item`.`parent-uri` = ? AND `item`.`uid` IN (0, ?) AND (`vid` != ? OR `vid` IS NULL)",
|
||||||
$parent['uri'], $uid, Verb::getID(Activity::FOLLOW)];
|
$parent['uri'], $uid, Verb::getID(Activity::FOLLOW)];
|
||||||
$items = conversation_fetch_items($parent, $items, $condition, $block_authors, $params);
|
$items = conversation_fetch_items($parent, $items, $condition, $block_authors, $params);
|
||||||
}
|
}
|
||||||
|
|
|
@ -136,7 +136,7 @@ function ping_init(App $a)
|
||||||
|
|
||||||
$notifs = ping_get_notifications(local_user());
|
$notifs = ping_get_notifications(local_user());
|
||||||
|
|
||||||
$condition = ["`unseen` AND `uid` = ? AND `contact-id` != ? AND `vid` != ?",
|
$condition = ["`unseen` AND `uid` = ? AND `contact-id` != ? AND (`vid` != ? OR `vid` IS NULL)",
|
||||||
local_user(), local_user(), Verb::getID(Activity::FOLLOW)];
|
local_user(), local_user(), Verb::getID(Activity::FOLLOW)];
|
||||||
$fields = ['id', 'parent', 'verb', 'author-name', 'unseen', 'author-link', 'author-avatar', 'contact-avatar',
|
$fields = ['id', 'parent', 'verb', 'author-name', 'unseen', 'author-link', 'author-avatar', 'contact-avatar',
|
||||||
'network', 'created', 'object', 'parent-author-name', 'parent-author-link', 'parent-guid', 'wall', 'activity'];
|
'network', 'created', 'object', 'parent-author-name', 'parent-author-link', 'parent-guid', 'wall', 'activity'];
|
||||||
|
|
Loading…
Reference in a new issue