Merge pull request #1420 from Bostrolicious/master

Fix HTTP links not working in podcast show notes.
This commit is contained in:
advplyr
2023-01-22 08:07:55 -06:00
committed by GitHub
+1 -1
View File
@@ -10,7 +10,7 @@ function sanitize(html) {
allowedAttributes: { allowedAttributes: {
a: ['href', 'name', 'target'] a: ['href', 'name', 'target']
}, },
allowedSchemes: ['https'], allowedSchemes: ['http', 'https', 'mailto'],
allowProtocolRelative: false allowProtocolRelative: false
} }