aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorIvan Tashkinov <ivantashkinov@gmail.com>2020-03-30 19:08:37 +0300
committerIvan Tashkinov <ivantashkinov@gmail.com>2020-03-30 19:08:37 +0300
commit9c94b6a327118d8c7ea21355d6c378ef31c54321 (patch)
tree5a516d7320c4183dfdb8d4381cf78d3a7db0c908 /lib
parentbe9d18461a5ed6bd835e2eba8d3b54ba61fc51fb (diff)
downloadpleroma-9c94b6a327118d8c7ea21355d6c378ef31c54321.tar.gz
[#2332] Misc. fixes per code change requests.
Diffstat (limited to 'lib')
-rw-r--r--lib/pleroma/web/activity_pub/mrf.ex2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/web/activity_pub/mrf.ex b/lib/pleroma/web/activity_pub/mrf.ex
index f54647945..a0b3af432 100644
--- a/lib/pleroma/web/activity_pub/mrf.ex
+++ b/lib/pleroma/web/activity_pub/mrf.ex
@@ -33,7 +33,7 @@ defmodule Pleroma.Web.ActivityPub.MRF do
@spec subdomain_match?([Regex.t()], String.t()) :: boolean()
def subdomain_match?(domains, host) do
- !!Enum.find(domains, fn domain -> Regex.match?(domain, host) end)
+ Enum.any?(domains, fn domain -> Regex.match?(domain, host) end)
end
@callback describe() :: {:ok | :error, Map.t()}