mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-24 08:32:23 +02:00
Fix: Origin undefined on error handling (#4224)
This commit is contained in:
parent
4245ea86e7
commit
4185ec20b0
@ -134,9 +134,10 @@ class UptimeKumaServer {
|
||||
log.info("auth", "WebSocket with no origin is allowed");
|
||||
callback(null, true);
|
||||
} else {
|
||||
let host = req.headers.host;
|
||||
let origin = req.headers.origin;
|
||||
|
||||
try {
|
||||
let host = req.headers.host;
|
||||
let origin = req.headers.origin;
|
||||
let originURL = new URL(origin);
|
||||
let xForwardedFor;
|
||||
if (await Settings.get("trustProxy")) {
|
||||
|
Loading…
Reference in New Issue
Block a user