ostatus: note handler: appropriately use Object.normalize()
This commit is contained in:
parent
67038ae15e
commit
d3fde9b5f2
1 changed files with 2 additions and 1 deletions
|
@ -106,7 +106,8 @@ def handle_note(entry, doc \\ nil) do
|
|||
cw <- OStatus.get_cw(entry),
|
||||
inReplyTo <- XML.string_from_xpath("//thr:in-reply-to[1]/@ref", entry),
|
||||
inReplyToActivity <- fetch_replied_to_activity(entry, inReplyTo),
|
||||
inReplyTo <- (inReplyToActivity && inReplyToActivity.data["object"]["id"]) || inReplyTo,
|
||||
inReplyToObject <- (inReplyToActivity && Object.normalize(inReplyToActivity.data["object"])) || nil,
|
||||
inReplyTo <- (inReplyToObject && inReplyToObject.data["id"]) || inReplyTo,
|
||||
attachments <- OStatus.get_attachments(entry),
|
||||
context <- get_context(entry, inReplyTo),
|
||||
tags <- OStatus.get_tags(entry),
|
||||
|
|
Loading…
Reference in a new issue