Add https support for scribd oembed provider ()

Currently scribd defaults to https for their sharing links - http still works but if you copy&paste quickly you may think it's broken
pull/5456/head
Rodrigo 2019-07-25 01:49:41 -05:00 zatwierdzone przez Matt Westcott
rodzic 1468cab3a1
commit 1a2bf525f2
4 zmienionych plików z 4 dodań i 1 usunięć

Wyświetl plik

@ -7,6 +7,7 @@ Changelog
* Added `construct_page_listing_buttons` hook (Michael van Tellingen)
* Added more detailed documentation and troubleshooting for installing OpenCV for feature detection (Daniele Procida)
* Fix: Added line breaks to long filenames on multiple image / document uploader (Kevin Howbrook)
* Fix: Added https support for Scribd oEmbed provider (Rodrigo)
2.6 (xx.xx.xxxx) - IN DEVELOPMENT

Wyświetl plik

@ -383,6 +383,7 @@ Contributors
* jonny5532
* William Blackie
* Andrew Miller
* Rodrigo
Translators
===========

Wyświetl plik

@ -25,6 +25,7 @@ Bug fixes
~~~~~~~~~
* Added line breaks to long filenames on multiple image / document uploader (Kevin Howbrook)
* Added https support for Scribd oEmbed provider (Rodrigo)
Upgrade considerations

Wyświetl plik

@ -92,7 +92,7 @@ revision3 = {
scribd = {
"endpoint": "http://www.scribd.com/services/oembed",
"urls": [
r'^http://[-\w]+\.scribd\.com/.+$',
r'^http(?:s)?://[-\w]+\.scribd\.com/.+$',
],
}