Feeds generated by Funkwhale do not pass validation with the w3c validator. This commit addresses the problems identified during validation:
-
The
isPermalink
is not recognized -> changed it toisPermaLink
(capital "L") -
itunes:summary
anditunes:subtitle
are 256 characters after truncating, but the maximum is 255. The truncating function trims the text to 255 chars, but then adds…
, so the text is one character too long -
The tags within
itunes:keywords
are now separated with commas instead of spaces (https://validator.w3.org/feed/docs/warning/InvalidKeywords.html)
Closes #1250 (closed)