formatting
authorWilliam Pitcock <nenolod@dereferenced.org>
Tue, 4 Dec 2018 05:01:21 +0000 (05:01 +0000)
committerWilliam Pitcock <nenolod@dereferenced.org>
Tue, 4 Dec 2018 05:01:21 +0000 (05:01 +0000)
lib/pleroma/web/ostatus/handlers/note_handler.ex
test/object_test.exs

index 39004367a3ae3df3964e5554a84d7241943a7f9c..ba232b0ecb7fa45a9841db5409f1ca121fd42d8f 100644 (file)
@@ -106,7 +106,8 @@ defmodule Pleroma.Web.OStatus.NoteHandler 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),
-         inReplyToObject <- (inReplyToActivity && Object.normalize(inReplyToActivity.data["object"])) || nil,
+         inReplyToObject <-
+           (inReplyToActivity && Object.normalize(inReplyToActivity.data["object"])) || nil,
          inReplyTo <- (inReplyToObject && inReplyToObject.data["id"]) || inReplyTo,
          attachments <- OStatus.get_attachments(entry),
          context <- get_context(entry, inReplyTo),
index 3907748f76f662757b4c6e8a4ea5baed8f563ad3..dac6c3be78393d38fefa1d98b5262aeb2819be52 100644 (file)
@@ -52,19 +52,23 @@ defmodule Pleroma.ObjectTest do
 
   describe "normalizer" do
     test "fetches unknown objects by default" do
-      %Object{} = object = Object.normalize("http://mastodon.example.org/@admin/99541947525187367")
+      %Object{} =
+        object = Object.normalize("http://mastodon.example.org/@admin/99541947525187367")
 
       assert object.data["url"] == "http://mastodon.example.org/@admin/99541947525187367"
     end
 
     test "fetches unknown objects when fetch_remote is explicitly true" do
-      %Object{} = object = Object.normalize("http://mastodon.example.org/@admin/99541947525187367", true)
+      %Object{} =
+        object = Object.normalize("http://mastodon.example.org/@admin/99541947525187367", true)
 
       assert object.data["url"] == "http://mastodon.example.org/@admin/99541947525187367"
     end
 
     test "does not fetch unknown objects when fetch_remote is false" do
-      assert is_nil(Object.normalize("http://mastodon.example.org/@admin/99541947525187367", false))
+      assert is_nil(
+               Object.normalize("http://mastodon.example.org/@admin/99541947525187367", false)
+             )
     end
   end
 end