Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/utils/error.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ export class FirebaseError extends Error implements FirebaseErrorInterface {

/** @returns The error code. */
public get code(): string {
return this.errorInfo.code;
return this.errorInfo?.code;
}

/** @returns The error message. */
public get message(): string {
return this.errorInfo.message;
return this.errorInfo?.message;
}

/** @returns The object representation of the error. */
Expand Down