From 4c53f76c22232a2ea7ee5c7c00072df7090a4176 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 31 May 2016 21:18:14 +0200 Subject: [PATCH] OStatus: repeated items in OStatus had a wrong "edited" date --- include/ostatus.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/ostatus.php b/include/ostatus.php index 918dec5f32..7ac26846d2 100644 --- a/include/ostatus.php +++ b/include/ostatus.php @@ -493,6 +493,7 @@ class ostatus { $orig_body = $xpath->query('atom:content/text()', $activityobjects)->item(0)->nodeValue; $orig_created = $xpath->query('atom:published/text()', $activityobjects)->item(0)->nodeValue; + $orig_edited = $xpath->query('atom:updated/text()', $activityobjects)->item(0)->nodeValue; $orig_contact = $contact; $orig_author = self::fetchauthor($xpath, $activityobjects, $importer, $orig_contact, false); @@ -502,6 +503,7 @@ class ostatus { $item["author-avatar"] = $orig_author["author-avatar"]; $item["body"] = add_page_info_to_body(html2bbcode($orig_body)); $item["created"] = $orig_created; + $item["edited"] = $orig_edited; $item["uri"] = $orig_uri; $item["plink"] = $orig_link;