mirror of
https://github.com/miniflux/v2.git
synced 2025-07-17 17:08:36 +00:00
Add support for protocol relative YouTube URLs
This commit is contained in:
parent
6d0dc451e4
commit
de1a4aad30
2 changed files with 12 additions and 1 deletions
|
@ -17,7 +17,7 @@ import (
|
|||
)
|
||||
|
||||
var (
|
||||
youtubeEmbedRegex = regexp.MustCompile(`http[s]?://www\.youtube\.com/embed/(.*)`)
|
||||
youtubeEmbedRegex = regexp.MustCompile(`//www\.youtube\.com/embed/(.*)`)
|
||||
)
|
||||
|
||||
// Sanitize returns safe HTML.
|
||||
|
@ -291,6 +291,7 @@ func isBlacklistedResource(src string) bool {
|
|||
|
||||
func isValidIframeSource(src string) bool {
|
||||
whitelist := []string{
|
||||
"//www.youtube.com",
|
||||
"http://www.youtube.com",
|
||||
"https://www.youtube.com",
|
||||
"https://www.youtube-nocookie.com",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue