mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-10 03:17:51 +00:00
Fix invalid Date HTTP header when signing fetch requests
https://akkoma.dev/AkkomaGang/akkoma/issues/503
This commit is contained in:
parent
368b22fd2f
commit
fc3cc61768
1 changed files with 1 additions and 1 deletions
|
@ -76,6 +76,6 @@ defmodule Pleroma.Signature do
|
||||||
def signed_date, do: signed_date(NaiveDateTime.utc_now())
|
def signed_date, do: signed_date(NaiveDateTime.utc_now())
|
||||||
|
|
||||||
def signed_date(%NaiveDateTime{} = date) do
|
def signed_date(%NaiveDateTime{} = date) do
|
||||||
Timex.format!(date, "{WDshort}, {0D} {Mshort} {YYYY} {h24}:{m}:{s} GMT")
|
Timex.lformat!(date, "{WDshort}, {0D} {Mshort} {YYYY} {h24}:{m}:{s} GMT", "en")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue