mirror of
https://github.com/jtomchak/akkoma.git
synced 2025-01-19 06:06:05 +01:00
IO list, not concatenation
This commit is contained in:
parent
65843d92c4
commit
da4029391d
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ defmodule Pleroma.Plugs.HTTPSecurityPlug do
|
|||
%{host: host, scheme: scheme} = URI.parse(url)
|
||||
|
||||
if scheme do
|
||||
scheme <> "://" <> host
|
||||
[scheme, "://", host]
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue