maxnowack/node-podcast

Remove unsupported <itunes:owner> tag

Opened this issue · 0 comments

In Aug 2022, Apple announced it was no longer supporting the <itunes:owner> tag.

The problem is that this library auto-populates the name element of this tag with the author value, if it exists. Is there a way we could remove this logic so that the tag would only be included if there was an explicit owner value? We would like to keep using the author tag but remove the unnecessary owner elements from our feeds.

options.itunesOwner = options.itunesOwner || {
name: options.author || "",
email: "",
};