diff options
author | Alex S <alex.strizhakov@gmail.com> | 2019-08-16 20:52:00 +0300 |
---|---|---|
committer | Ariadne Conill <ariadne@dereferenced.org> | 2019-08-18 22:34:14 +0000 |
commit | 4a0d82f72740de385a6b895bb86ee10d758af07a (patch) | |
tree | 1aba56528233f847dd6e997ae238dd41b54dc8cd | |
parent | 93a01b3496eb677066b79de0daffa2811c443531 (diff) | |
download | pleroma-4a0d82f72740de385a6b895bb86ee10d758af07a.tar.gz |
order
-rw-r--r-- | lib/pleroma/http/http.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/http/http.ex b/lib/pleroma/http/http.ex index 40b3e1a29..3e29b7b6c 100644 --- a/lib/pleroma/http/http.ex +++ b/lib/pleroma/http/http.ex @@ -90,7 +90,7 @@ 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(:versions, [:"tlsv1.2", :"tlsv1.1", :tlsv1]) Keyword.put(options, :tls_opts, tls_opts) ++ [ssl: [server_name_indication: host]] |