Uncaught (in promise) Error: Corruption: block checksum mismatch content.js:2941

Viewed 21

im noticed in my web there a lot of same errors, i think appears each time run ajax code, is a old web, i not got idea where start to fix it, any clue?

content.js:2941 Uncaught (in promise) Error: Corruption: block checksum mismatch
wrappedSendMessageCallback @ content.js:2941
content.js:2941 Uncaught (in promise) Error: Corruption: block checksum mismatch
browser-polyfill.js:1163 Uncaught (in promise) Error: Corruption: block checksum mismatch


lines 2941 content.js (file i not got in my folder dir)
        if (extensionAPIs.runtime.lastError) {
          // Detect when none of the listeners replied to the sendMessage call and resolve
          // the promise to undefined as in Firefox.
          // See https://github.com/mozilla/webextension-polyfill/issues/130
          if (extensionAPIs.runtime.lastError.message === CHROME_SEND_MESSAGE_CALLBACK_NO_RESPONSE_MESSAGE) {
            resolve();
          } else {
            reject(new Error(extensionAPIs.runtime.lastError.message));
          }
        } else if (reply && reply.__mozWebExtensionPolyfillReject__) {
          // Convert back the JSON representation of the error into
          // an Error instance.
          reject(new Error(reply.message));
        } else {
          resolve(reply);
        }
      };
0 Answers
Related