diff options
author | Thomas Citharel <tcit@tcit.fr> | 2019-12-17 16:16:21 +0100 |
---|---|---|
committer | Thomas Citharel <tcit@tcit.fr> | 2019-12-17 16:16:21 +0100 |
commit | d2f1c4f658a8c995716aee3876cb46a0f48f99cb (patch) | |
tree | 511c593641a9c08d45ab8b53cc4c8b7beb1fcdc0 /lib/pleroma/web/twitter_api | |
parent | 38ad407395e838ddf1c11922806adc080af44d36 (diff) | |
download | pleroma-d2f1c4f658a8c995716aee3876cb46a0f48f99cb.tar.gz |
Add ActivityPub Object Event type support
Adds Event support in the same way Video objects are handled, with the
name of the object as message header.
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
Diffstat (limited to 'lib/pleroma/web/twitter_api')
-rw-r--r-- | lib/pleroma/web/twitter_api/controllers/util_controller.ex | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/pleroma/web/twitter_api/controllers/util_controller.ex b/lib/pleroma/web/twitter_api/controllers/util_controller.ex index 2305bb413..799dd17ae 100644 --- a/lib/pleroma/web/twitter_api/controllers/util_controller.ex +++ b/lib/pleroma/web/twitter_api/controllers/util_controller.ex @@ -104,7 +104,8 @@ defmodule Pleroma.Web.TwitterAPI.UtilController do defp is_status?(acct) do case Pleroma.Object.Fetcher.fetch_and_contain_remote_object_from_id(acct) do - {:ok, %{"type" => type}} when type in ["Article", "Note", "Video", "Page", "Question"] -> + {:ok, %{"type" => type}} + when type in ["Article", "Event", "Note", "Video", "Page", "Question"] -> true _ -> |