fix: escape ]]> in podcast description
This commit is contained in:
		@@ -27,7 +27,7 @@ export async function updatePodcastRSS() {
 | 
			
		||||
    itemsXml += `
 | 
			
		||||
      <item>
 | 
			
		||||
        <title><![CDATA[${ep.title}]]></title>
 | 
			
		||||
        <description><![CDATA[${ep.title}]]></description>
 | 
			
		||||
        <description><![CDATA[${ep.title.replace(/\]\]>/g, ']]>')}]]></description>
 | 
			
		||||
        <author>${channelAuthor}</author>
 | 
			
		||||
        <category>${channelCategories}</category>
 | 
			
		||||
        <language>${channelLanguage}</language>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user