Refactor code to comply with credo suggestions
[akkoma] / lib / pleroma / web / salmon / salmon.ex
index 3881f2758e0b82bcf2aff11983df6ce175bc8696..f26daf824fe4ee46839067174593724cd8f53ec9 100644 (file)
@@ -10,7 +10,6 @@ defmodule Pleroma.Web.Salmon do
     {:xmlObj, :string, encoding} = :xmerl_xpath.string('string(//me:encoding[1])', doc)
     {:xmlObj, :string, type} = :xmerl_xpath.string('string(//me:data[1]/@type)', doc)
 
-
     {:ok, data} = Base.url_decode64(to_string(data), ignore: :whitespace)
     {:ok, sig} = Base.url_decode64(to_string(sig), ignore: :whitespace)
     alg = to_string(alg)