diff options
author | lain <lain@soykaf.club> | 2020-06-02 11:32:03 +0000 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-06-02 11:32:03 +0000 |
commit | cd2abcc0e3a67898fbadd073ff778e7342c09709 (patch) | |
tree | 2a0261f4a3f524752d06b0a5f3207479137e1077 /test/tasks | |
parent | 2db7a0d6b6cc4d5cdb843035611895cc4a274d7d (diff) | |
parent | 165a4b2a690ff7809ebbae65cddff3221d52489a (diff) | |
download | pleroma-cd2abcc0e3a67898fbadd073ff778e7342c09709.tar.gz pleroma-cd2abcc0e3a67898fbadd073ff778e7342c09709.zip |
Merge branch 'fix/invisible-repeats' into 'develop'
Do not include activities of invisible users unless explicitly requested
Closes #1833
See merge request pleroma/pleroma!2620
Diffstat (limited to 'test/tasks')
-rw-r--r-- | test/tasks/relay_test.exs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/tasks/relay_test.exs b/test/tasks/relay_test.exs index d3d88467d..678288854 100644 --- a/test/tasks/relay_test.exs +++ b/test/tasks/relay_test.exs @@ -65,7 +65,8 @@ defmodule Mix.Tasks.Pleroma.RelayTest do "type" => "Undo", "actor_id" => follower_id, "limit" => 1, - "skip_preload" => true + "skip_preload" => true, + "invisible_actors" => true }) assert undo_activity.data["type"] == "Undo" |