Fix https redirect

This commit is contained in:
Mészáros Mihály
2020-03-26 21:21:42 +01:00
parent 9e39dd3313
commit 97fc02a543
+1 -1
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}`);