From: dtluna Date: Sat, 8 Apr 2017 14:19:57 +0000 (+0300) Subject: Refactor lib/pleroma/web/twitter_api/twitter_api.ex X-Git-Url: https://git.squeep.com/?a=commitdiff_plain;h=57795f73323820d9c67184b9c383b77b8d6c6fbd;p=akkoma Refactor lib/pleroma/web/twitter_api/twitter_api.ex --- diff --git a/lib/pleroma/web/twitter_api/twitter_api.ex b/lib/pleroma/web/twitter_api/twitter_api.ex index 932bef5ef..0d9a491da 100644 --- a/lib/pleroma/web/twitter_api/twitter_api.ex +++ b/lib/pleroma/web/twitter_api/twitter_api.ex @@ -25,6 +25,8 @@ defmodule Pleroma.Web.TwitterAPI.TwitterAPI do content_html = add_user_links(content, mentions) + date = make_date + activity = %{ "type" => "Create", "to" => to, @@ -33,11 +35,11 @@ defmodule Pleroma.Web.TwitterAPI.TwitterAPI do "type" => "Note", "to" => to, "content" => content_html, - "published" => make_date, + "published" => date, "context" => context, "attachment" => attachments }, - "published" => make_date, + "published" => date, "context" => context }