forked from GNUsocial/gnu-social
handle missing profile for notices better in NoticeList
This commit is contained in:
parent
6968c96b44
commit
d706a3e21b
@ -96,8 +96,14 @@ class NoticeList extends Widget
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
$item = $this->newListItem($this->notice);
|
try {
|
||||||
$item->show();
|
$item = $this->newListItem($this->notice);
|
||||||
|
$item->show();
|
||||||
|
} catch (Exception $e) {
|
||||||
|
// we log exceptions and continue
|
||||||
|
common_log(LOG_ERR, $e->getMessage());
|
||||||
|
continue;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->out->elementEnd('ol');
|
$this->out->elementEnd('ol');
|
||||||
|
Loading…
Reference in New Issue
Block a user