Check for conversation with unique conversation ID
This commit is contained in:
parent
e4c462570f
commit
b0acaeafe3
|
@ -540,11 +540,8 @@ class NoticeListItem extends Widget
|
|||
function showContext()
|
||||
{
|
||||
$hasConversation = false;
|
||||
if( !empty($this->notice->conversation)
|
||||
&& $this->notice->conversation != $this->notice->id){
|
||||
$hasConversation = true;
|
||||
}else{
|
||||
$conversation = Notice::conversationStream($this->notice->id, 1, 1);
|
||||
if (!empty($this->notice->conversation)) {
|
||||
$conversation = Notice::conversationStream($this->notice->conversation, 1, 1);
|
||||
if ($conversation->N > 0) {
|
||||
$hasConversation = true;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user