diff options
author | Alex S <alex.strizhakov@gmail.com> | 2019-08-17 21:50:50 +0300 |
---|---|---|
committer | Alex S <alex.strizhakov@gmail.com> | 2019-08-20 12:41:46 +0300 |
commit | 210e116dc0ee48183bf7b7a363c6d053f88d30fe (patch) | |
tree | 5d38bbf3a635cea6b3fa63b1e75ae33c00cb6882 | |
parent | 699fc4f6eb5fa170d0ae56f5949ead7618c264ab (diff) | |
download | pleroma-210e116dc0ee48183bf7b7a363c6d053f88d30fe.tar.gz |
no hardcode of versions
-rw-r--r-- | lib/pleroma/http/http.ex | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/pleroma/http/http.ex b/lib/pleroma/http/http.ex index 3e29b7b6c..a7f42d0c0 100644 --- a/lib/pleroma/http/http.ex +++ b/lib/pleroma/http/http.ex @@ -90,7 +90,6 @@ defmodule Pleroma.HTTP do tls_opts = Keyword.get(options, :tls_opts, []) |> Keyword.put(:server_name_indication, host) - |> Keyword.put(:versions, [:"tlsv1.2", :"tlsv1.1", :tlsv1]) Keyword.put(options, :tls_opts, tls_opts) ++ [ssl: [server_name_indication: host]] |