diff options
| author | dtluna <dtluna@openmailbox.org> | 2017-04-10 15:22:49 +0300 | 
|---|---|---|
| committer | dtluna <dtluna@openmailbox.org> | 2017-04-10 15:22:49 +0300 | 
| commit | 0016589aea391fd6b8d41257b7f39f76b5b93775 (patch) | |
| tree | 71f83f23cc47ae1058bdb26b23f12277c31acf7b /lib | |
| parent | 57795f73323820d9c67184b9c383b77b8d6c6fbd (diff) | |
| download | pleroma-0016589aea391fd6b8d41257b7f39f76b5b93775.tar.gz pleroma-0016589aea391fd6b8d41257b7f39f76b5b93775.zip | |
Remove ambiguity in call to make_date/0
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/pleroma/web/twitter_api/twitter_api.ex | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/lib/pleroma/web/twitter_api/twitter_api.ex b/lib/pleroma/web/twitter_api/twitter_api.ex index 0d9a491da..0a942e880 100644 --- a/lib/pleroma/web/twitter_api/twitter_api.ex +++ b/lib/pleroma/web/twitter_api/twitter_api.ex @@ -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 } | 
