Fix https redirect

This commit is contained in:
Mészáros Mihály
2020-03-26 21:21:42 +01:00
parent 5071282d40
commit 62165ea597
3 changed files with 17430 additions and 1 deletions
+1 -1
View File
@@ -361,7 +361,7 @@ async function runHttpsServer()
app.all('*', async (req, res, next) =>
{
if (req.secure)
if (req.secure || config.httpOnly )
{
const ltiURL = new URL(`${req.protocol }://${ req.get('host') }${req.originalUrl}`);