mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-14 16:01:01 +00:00
Fix Atom feed datetime format (#766)
This commit is contained in:
parent
847d6f7fac
commit
180e34b07c
1 changed files with 1 additions and 1 deletions
|
@ -134,7 +134,7 @@ pub fn build_atom_feed(
|
|||
FeedBuilder::default()
|
||||
.title(title)
|
||||
.id(uri)
|
||||
.updated(updated.format("%Y-%m-%d %H:%M:%SZ").to_string())
|
||||
.updated(updated.format("%Y-%m-%dT%H:%M:%SZ").to_string())
|
||||
.entries(
|
||||
entries
|
||||
.into_iter()
|
||||
|
|
Loading…
Reference in a new issue