React-native-debugger: `Cannot read property 'prototype' of null` after upgrade to RN 0.63.2

Created on 13 Sep 2020  路  1Comment  路  Source: jhen0409/react-native-debugger

Hello! I had previously have issues with network requests. Requests itself hadn't been visible, or request response was blank.

Reading few issues here I've added to root my index.js:

global.XMLHttpRequest = global.originalXMLHttpRequest || global.XMLHttpRequest;
global.FormData = global.originalFormData || global.FormData;

if (window.FETCH_SUPPORT) {
  window.FETCH_SUPPORT.blob = false;
} else {
  global.Blob = global.originalBlob || global.Blob;
  global.FileReader = global.originalFileReader || global.FileReader;
}

GLOBAL.Blob = null;

Everything was working fine till upgrading to React Native 0.63.2. Now Simulator always displays an error: Cannot read property 'prototype' of null. Removing GLOBAL.Blob = null; resolves this issue, but network request info, such as response and params are not visible anymore.

Maybe someone already faced the issue and know how to fix it.

React Native Debugger app version: 0.11.4
React Native version: 0.63.2
Platform: both platforms
Is real device of platform: No
Operating System: macOS

Most helpful comment

Any updates on this?

>All comments

Any updates on this?

Was this page helpful?
0 / 5 - 0 ratings

Related issues

freerangenerd picture freerangenerd  路  17Comments

Syahrul picture Syahrul  路  19Comments

eshikerya picture eshikerya  路  39Comments

getaaron picture getaaron  路  16Comments

peggyrayzis picture peggyrayzis  路  20Comments