Browse Source

Merge branch 'hotfix/http-date-header' into 'develop'

activitypub: fix date header format

See merge request pleroma/pleroma!879
tags/v1.1.4
kaniini 5 years ago
parent
commit
b91a6dd85e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lib/pleroma/web/activity_pub/activity_pub.ex

+ 1
- 1
lib/pleroma/web/activity_pub/activity_pub.ex View File

@@ -828,7 +828,7 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do

date =
NaiveDateTime.utc_now()
|> Timex.format!("{WDshort}, {D} {Mshort} {YYYY} {h24}:{m}:{s} GMT")
|> Timex.format!("{WDshort}, {0D} {Mshort} {YYYY} {h24}:{m}:{s} GMT")

signature =
Pleroma.Web.HTTPSignatures.sign(actor, %{


Loading…
Cancel
Save