You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support for the blob.text() method was introduced in Chrome v76.x. The browser in this report is running Chrome v72, so the feature is not supported.
However, when reviewing this code, there is a defect in the handling of the initial promise returned by the fileBlob.text() call. Need to remove the second fileBloc.text() call while retaining the .then from the initial promise.
// TODO: Refactor this to ES5 for support in Safari and Opera
// eslint-disable-next-line no-unused-vars
const textPromise = fileBlob.text(); <<===
fileBlob.text().then((text) => {
if (text && text.length > 0) {
This error is logged when an attempt is made to open a Solo project.
The text was updated successfully, but these errors were encountered: