forked from GNUsocial/gnu-social
Fix for replies in Yammer import
This commit is contained in:
parent
8091c4d291
commit
0ff28ac8e0
@ -200,9 +200,9 @@ class YammerImporter
|
|||||||
$options = array();
|
$options = array();
|
||||||
|
|
||||||
if ($item['replied_to_id']) {
|
if ($item['replied_to_id']) {
|
||||||
$replyto = $this->findImportedNotice($item['replied_to_id']);
|
$replyTo = $this->findImportedNotice($item['replied_to_id']);
|
||||||
if ($replyto) {
|
if ($replyTo) {
|
||||||
$options['replyto'] = $replyto;
|
$options['reply_to'] = $replyTo;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$options['created'] = $this->timestamp($item['created_at']);
|
$options['created'] = $this->timestamp($item['created_at']);
|
||||||
|
Loading…
Reference in New Issue
Block a user