-
Notifications
You must be signed in to change notification settings - Fork 976
Description
Error 1
FirebaseError
Firebase: Error thrown when reading from storage. Original error: Firebase: Error thrown when opening storage. Original error: Version change transaction was aborted in upgradeneeded event handler.. (app/storage-open).. (app/storage-get).
error code:
throw ERROR_FACTORY.create(AppError.STORAGE_GET, {
originalErrorMessage: (e as Error)?.message
});
Error 2
FirebaseError
Installations: Could not process request. Application offline. (installations/app-offline).
error code:
const registrationPromiseWithError = Promise.reject(
ERROR_FACTORY.create(ErrorCode.APP_OFFLINE)
);
Error 3
FirebaseError
Installations: Could not process request. Application offline. (installations/app-offline).
Error 4
ReferenceError
fetch is not defined
error code:
requiredApisAvailable(): boolean {
if (!fetch || !Promise || !areCookiesEnabled()) {
consoleLogger.info(
'Firebase Performance cannot start if browser does not support fetch and Promise or cookie is disabled.'
);
return false;
}