From c2c0fefa437e6f132e2576aa5cc78b33c0f6f7f1 Mon Sep 17 00:00:00 2001 From: Markus Birth Date: Sat, 29 Feb 2020 00:32:10 +0100 Subject: [PATCH] Output itunes:email to satisfy Spotify. --- global.ini | 3 +++ lib/RSSGenerator.php | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/global.ini b/global.ini index 6f45b5d..7905429 100644 --- a/global.ini +++ b/global.ini @@ -9,5 +9,8 @@ time_zone = "America/Chicago" managing_editor = "markus@birth-online.de (Markus Birth)" webmaster = "markus@birth-online.de (Markus Birth)" +itunes_owner_name = "Markus Birth" +itunes_owner_email = "markus@birth-online.de" + ; How long before sites may refetch RSS (minutes) caching_ttl = 60 diff --git a/lib/RSSGenerator.php b/lib/RSSGenerator.php index b131188..8005519 100644 --- a/lib/RSSGenerator.php +++ b/lib/RSSGenerator.php @@ -99,6 +99,11 @@ class RSSGenerator $channel->appendChild($dom->createElement('webMaster', $this->global_conf['config']['webmaster'])); $channel->appendChild($dom->createElement('ttl', $this->global_conf['config']['caching_ttl'])); + $i_owner = $dom->createElement('itunes:owner'); + $i_owner->appendChild($dom->createElement('itunes:name', $this->global_conf['config']['itunes_owner_name'])); + $i_owner->appendChild($dom->createElement('itunes:email', $this->global_conf['config']['itunes_owner_email'])); + $channel->appendChild($i_owner); + $skipDays = $dom->createElement('skipDays'); $days_on = explode(',', $this->show_conf['show']['schedule_days']); if (!in_array('Mo', $days_on)) {