Fix https redirect

master
Mészáros Mihály 2020-03-26 21:21:42 +01:00
parent 9e39dd3313
commit 97fc02a543
1 changed files with 1 additions and 1 deletions

View File

@ -391,7 +391,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}`);