🗃️ Committing everything that changed 🗃️

wwwroot/js/errorpages/loaddomain.js
This commit is contained in:
casjay 2024-07-17 19:49:13 -04:00
parent 75e36ccb33
commit 8352631685
Signed by untrusted user who does not match committer: jason
GPG Key ID: 1AB309F42A764145

View File

@ -3,5 +3,5 @@ function loadDomain() {
let port = location.port;
let url = location.hostname;
var display = document.getElementById('display-domain');
display.innerHTML = proto + '//' + url + ':' + port;
display.innerHTML = `${req.protocol}://${req.get('host')}/${req.originalUrl}`;
}