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