From 208fc95e592dbaca704ff74976f3ab292f510eaa Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Wed, 25 Aug 2021 16:26:04 -0400 Subject: [PATCH] Fix local timeline --- lib/clacks/timeline.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/clacks/timeline.ex b/lib/clacks/timeline.ex index 9313bc5..abef945 100644 --- a/lib/clacks/timeline.ex +++ b/lib/clacks/timeline.ex @@ -76,7 +76,7 @@ defmodule Clacks.Timeline do |> join_with_actors() |> join_with_announced_or_liked() |> select( - [activity, actor, announced, announced_actor], + [activity, _object, actor, announced, announced_actor], {activity, actor, {announced, announced_actor}} ) |> Repo.all()