Skip to content
Closed
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 packages/angular/src/errorhandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ function extractHttpModuleError(error: HttpErrorResponse): string | Error {
return `Server returned code ${error.status} with body "${error.error}"`;
}

// If we don't have any detailed information, fallback to the request message itself.
return error.message;
// If we don't have any detailed information, fallback to the request itself.
return error;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Inconsistent Return Types Cause Runtime Errors

The function now returns inconsistent types: while other branches return formatted strings, the fallback case returns the entire error object instead of a string. This type inconsistency could cause runtime errors or unexpected behavior in calling code that expects a string.

Fix in Cursor Fix in Web

}

type ErrorCandidate = {
Expand Down