diff options
author | 2023-10-16 02:58:03 +0200 | |
---|---|---|
committer | 2023-10-16 02:58:03 +0200 | |
commit | ef5bd83bd0d8645b1d7ae4201e7a167f82e3eaee (patch) | |
tree | 6cae063ad6895898e9bb1901a4e57f7611fc2bef /lib/FormatAbstract.php | |
parent | 408c2e5e918dd94716281dfce4bb5b6882cc829e (diff) | |
download | rss-bridge-ef5bd83bd0d8645b1d7ae4201e7a167f82e3eaee.tar.gz rss-bridge-ef5bd83bd0d8645b1d7ae4201e7a167f82e3eaee.tar.zst rss-bridge-ef5bd83bd0d8645b1d7ae4201e7a167f82e3eaee.zip |
feat: preserve and reproduce podcast feeds (itunes rss module) (#3759)
Diffstat (limited to 'lib/FormatAbstract.php')
-rw-r--r-- | lib/FormatAbstract.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/FormatAbstract.php b/lib/FormatAbstract.php index b05a5764..c76d1e42 100644 --- a/lib/FormatAbstract.php +++ b/lib/FormatAbstract.php @@ -2,6 +2,8 @@ abstract class FormatAbstract { + public const ITUNES_NS = 'http://www.itunes.com/dtds/podcast-1.0.dtd'; + const MIME_TYPE = 'text/plain'; protected string $charset = 'UTF-8'; |