Another ActivityPub fix

This commit is contained in:
Jan-Lukas Else 2022-12-21 20:36:48 +01:00
parent c153638fd8
commit 295cabe781
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ func (a *goBlog) toAPNote(p *post) *ap.Note {
} }
if p.Updated != "" { if p.Updated != "" {
if t, err := dateparse.ParseLocal(p.Updated); err == nil { if t, err := dateparse.ParseLocal(p.Updated); err == nil {
note.Published = t note.Updated = t
} }
} }
// Reply // Reply