Fix for replies in Yammer import
This commit is contained in:
parent
4b2089dc52
commit
271b553e6e
|
@ -200,9 +200,9 @@ class YammerImporter
|
|||
$options = array();
|
||||
|
||||
if ($item['replied_to_id']) {
|
||||
$replyto = $this->findImportedNotice($item['replied_to_id']);
|
||||
if ($replyto) {
|
||||
$options['replyto'] = $replyto;
|
||||
$replyTo = $this->findImportedNotice($item['replied_to_id']);
|
||||
if ($replyTo) {
|
||||
$options['reply_to'] = $replyTo;
|
||||
}
|
||||
}
|
||||
$options['created'] = $this->timestamp($item['created_at']);
|
||||
|
|
Loading…
Reference in New Issue
Block a user