diff options
author | Ivan Tashkinov <ivantashkinov@gmail.com> | 2020-08-14 20:55:45 +0300 |
---|---|---|
committer | Ivan Tashkinov <ivantashkinov@gmail.com> | 2020-08-14 20:55:45 +0300 |
commit | 95529ab709b14acbf0b4ef2c17a76e0540e1e84e (patch) | |
tree | 0ec69c4651bdc8fd1ff8c6b9beb937f4062a0b6d /lib/pleroma/web/preload | |
parent | 33e508d7c6bae4f2b48568c50e1573fb4cbcffd3 (diff) | |
download | pleroma-95529ab709b14acbf0b4ef2c17a76e0540e1e84e.tar.gz |
[#2046] Defaulted pleroma/restrict_unauthenticated basing on instance privacy setting (i.e. restrict on private instances only by default).
Diffstat (limited to 'lib/pleroma/web/preload')
-rw-r--r-- | lib/pleroma/web/preload/timelines.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/web/preload/timelines.ex b/lib/pleroma/web/preload/timelines.ex index 57de04051..b279a865d 100644 --- a/lib/pleroma/web/preload/timelines.ex +++ b/lib/pleroma/web/preload/timelines.ex @@ -16,7 +16,7 @@ defmodule Pleroma.Web.Preload.Providers.Timelines do end def build_public_tag(acc, params) do - if Pleroma.Config.get([:restrict_unauthenticated, :timelines, :federated], true) do + if Pleroma.Config.restrict_unauthenticated_access?(:timelines, :federated) do acc else Map.put(acc, @public_url, public_timeline(params)) |