mirror of https://github.com/status-im/metro.git
Fix webSocketProxy.js
Summary: cc mkonicek ide Closes https://github.com/facebook/react-native/pull/3638 Reviewed By: svcscm Differential Revision: D2576536 Pulled By: martinbigio fb-gh-sync-id: 27f53eedf2bd94f71f4e405d3d4bb193eaabc918
This commit is contained in:
parent
a0b60b1434
commit
3b77b206c3
|
@ -59,11 +59,12 @@ function attachToServer(server, path) {
|
|||
|
||||
return {
|
||||
server: wss,
|
||||
isChromeConnected: () =>
|
||||
clients
|
||||
.map(ws => ws.upgradeReq.headers['user-agent'])
|
||||
isChromeConnected: function() {
|
||||
return clients
|
||||
.map(function(ws) { return ws.upgradeReq.headers['user-agent']; })
|
||||
.filter(Boolean)
|
||||
.some(userAgent => userAgent.includes('Chrome'))
|
||||
.some(function(userAgent) { return userAgent.includes('Chrome'); })
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue