mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
f60e86a71d
[misc] add patches for gracefully handling missing req.socket/connection GitOrigin-RevId: fd0b067d5a4b5a96857ac94a577460b82bba7672
13 lines
415 B
Diff
13 lines
415 B
Diff
diff --git a/node_modules/forwarded/index.js b/node_modules/forwarded/index.js
|
|
index b2b6bdd..75e6254 100644
|
|
--- a/node_modules/forwarded/index.js
|
|
+++ b/node_modules/forwarded/index.js
|
|
@@ -46,7 +46,7 @@ function forwarded (req) {
|
|
function getSocketAddr (req) {
|
|
return req.socket
|
|
? req.socket.remoteAddress
|
|
- : req.connection.remoteAddress
|
|
+ : req.connection && req.connection.remoteAddress
|
|
}
|
|
|
|
/**
|