Remove ambiguity in call to make_date/0

This commit is contained in:
dtluna 2017-04-10 15:22:49 +03:00
parent 57795f7332
commit 0016589aea
1 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ defmodule Pleroma.Web.TwitterAPI.TwitterAPI do
content_html = add_user_links(content, mentions)
date = make_date
date = make_date()
activity = %{
"type" => "Create",
@ -108,7 +108,7 @@ defmodule Pleroma.Web.TwitterAPI.TwitterAPI do
"type" => "Follow",
"actor" => follower.ap_id,
"object" => followed.ap_id,
"published" => make_date
"published" => make_date()
})
do
{ :ok, follower, followed, activity }