From 699fc4f6eb5fa170d0ae56f5949ead7618c264ab Mon Sep 17 00:00:00 2001 From: Alex S Date: Fri, 16 Aug 2019 20:52:00 +0300 Subject: [PATCH] order --- lib/pleroma/http/http.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]]