diff --git a/desktop/plugins/network/index.tsx b/desktop/plugins/network/index.tsx index b71b347a3..311c6b5de 100644 --- a/desktop/plugins/network/index.tsx +++ b/desktop/plugins/network/index.tsx @@ -455,6 +455,10 @@ function buildRow( if (request == null) { return null; } + + if (request.url == null) { + return null; + } const url = new URL(request.url); const domain = url.host + url.pathname; const friendlyName = getHeaderValue(request.headers, 'X-FB-Friendly-Name');