Fix soundcloud embed regex

This commit is contained in:
Kiril Staikov 2019-09-11 09:45:55 -04:00 committed by Matt Westcott
parent 0d4f670625
commit 4b692d67d5
4 changed files with 4 additions and 1 deletions

View file

@ -17,6 +17,7 @@ Changelog
* Add ability to insert telephone numbers as links in Draftail (rich text) fields (Mikael Engström and Liam Brenner)
* Increase delay before search in the snippet chooser, to prevent redundant search request round trips (Robert Rollins)
* Add `WAGTAIL_EMAIL_MANAGEMENT_ENABLED` setting to determine whether users can change their email address (Janne Alatalo)
* Recognise Soundcloud artist URLs as embeddable (Kiril Staikov)
* Fix: Added line breaks to long filenames on multiple image / document uploader (Kevin Howbrook)
* Fix: Added https support for Scribd oEmbed provider (Rodrigo)
* Fix: Changed StreamField group labels color so labels are visible (Catherine Farman)

View file

@ -397,6 +397,7 @@ Contributors
* Janne Alatalo
* Colin Klein
* Eduard Luca
* Kiril Staikov
Translators
===========

View file

@ -36,6 +36,7 @@ Other features
* Add ability to insert telephone numbers as links in Draftail (rich text) fields (Mikael Engström and Liam Brenner)
* Increase delay before search in the snippet chooser, to prevent redundant search request round trips (Robert Rollins)
* Add ``WAGTAIL_EMAIL_MANAGEMENT_ENABLED`` setting to determine whether users can change their email address (Janne Alatalo)
* Recognise Soundcloud artist URLs as embeddable (Kiril Staikov)
Bug fixes

View file

@ -221,7 +221,7 @@ twitter = {
soundcloud = {
"endpoint": "https://soundcloud.com/oembed",
"urls": [
r'^https://soundcloud\.com/[^#?/]+/.+$',
r'^https://soundcloud\.com/.+$',
],
}