Further column collisions in ReplyNoticeStream
This commit is contained in:
parent
9a2e3a52c9
commit
618e31a780
@ -88,8 +88,8 @@ class RawReplyNoticeStream extends NoticeStream
|
|||||||
|
|
||||||
$reply->whereAdd(sprintf('reply.profile_id = %u', $this->userId));
|
$reply->whereAdd(sprintf('reply.profile_id = %u', $this->userId));
|
||||||
|
|
||||||
Notice::addWhereSinceId($reply, $since_id, 'notice_id', 'modified');
|
Notice::addWhereSinceId($reply, $since_id, 'notice_id', 'reply.modified');
|
||||||
Notice::addWhereMaxId($reply, $max_id, 'notice_id', 'modified');
|
Notice::addWhereMaxId($reply, $max_id, 'notice_id', 'reply.modified');
|
||||||
|
|
||||||
if (!empty($this->selectVerbs)) {
|
if (!empty($this->selectVerbs)) {
|
||||||
$reply->joinAdd(array('notice_id', 'notice:id'));
|
$reply->joinAdd(array('notice_id', 'notice:id'));
|
||||||
@ -104,11 +104,15 @@ class RawReplyNoticeStream extends NoticeStream
|
|||||||
|
|
||||||
$ids = array();
|
$ids = array();
|
||||||
|
|
||||||
|
try {
|
||||||
if ($reply->find()) {
|
if ($reply->find()) {
|
||||||
while ($reply->fetch()) {
|
while ($reply->fetch()) {
|
||||||
$ids[] = $reply->notice_id;
|
$ids[] = $reply->notice_id;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} catch (Exception $e) {
|
||||||
|
common_debug('MMNDEBUG: '.$e->getMessage().' on '.var_export($reply, true));
|
||||||
|
}
|
||||||
|
|
||||||
return $ids;
|
return $ids;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user