Subject: | Author name and email address incorrect |
I have the following code:
$atom->add_entry(
title => $item->{title},
link => $item->{link},
author => {
name => $author_name,
},
modified => strftime("%Y-%m-%dT%H:%M:%S", @time) . '+00:00',
issued => strftime("%Y-%m-%dT%H:%M:%S", @time) . '+00:00',
content => $item->{description},
) or die;
$author_name is always populated with something.
The author part of the resulting atom feed looks like this:
<author>
<name>name</name>
</author>
A valid Atom feed must have at least the author name, so this is a bit of a show stopper.