diff --git a/react-packager/src/Server/index.js b/react-packager/src/Server/index.js index dadc7379..c7ab61be 100644 --- a/react-packager/src/Server/index.js +++ b/react-packager/src/Server/index.js @@ -499,10 +499,8 @@ class Server { const sourceUrl = frame.file; // Skip `/debuggerWorker.js` which drives remote debugging because it // does not need to symbolication. - // Skip anything except http(s), because there is no support for that yet if (!urlIndexes.hasOwnProperty(sourceUrl) && - !sourceUrl.endsWith('/debuggerWorker.js') && - sourceUrl.startsWith('http')) { + !sourceUrl.endsWith('/debuggerWorker.js')) { urlIndexes[sourceUrl] = uniqueUrls.length; uniqueUrls.push(sourceUrl); }