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
commit da2d1455d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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
} }