docs: fix security doc url check (#16775)

This commit is contained in:
pol 2019-02-06 19:43:58 +01:00 коммит произвёл Samuel Attard
Родитель 76d919fff5
Коммит c76459738e
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -278,7 +278,8 @@ session
callback(true)
}
if (!url.startsWith('https://my-website.com')) {
// Verify URL
if (!url.startsWith('https://my-website.com/')) {
// Denies the permissions request
return callback(false)
}