Skip to content

Commit

Permalink
Merge pull request #516 from MindscapeHQ/ht/fix-breadcrumb-message
Browse files Browse the repository at this point in the history
Fix typo in fetching XHR url for breadcrumbs
  • Loading branch information
Hamish-taylor committed Jan 31, 2024
2 parents d2a269c + 5acd701 commit f2be885
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Unused normalize.css file
-->
## [3.0.1]

### Fixed
- Fixed an typo raised by issue #508 that caused breadcrumb messages to be undefined

## [3.0.0]

### Added
Expand Down Expand Up @@ -806,4 +811,4 @@ NPM and nuget packages (2.25.4 and older) were marked deprecated on NPM and Nuge

## v1.0.1

- Initial Release
- Initial Release
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
],
"title": "Raygun4js",
"description": "Raygun.com plugin for JavaScript",
"version": "3.0.0",
"version": "3.0.1",
"homepage": "https://github.com/MindscapeHQ/raygun4js",
"author": {
"name": "MindscapeHQ",
Expand Down
2 changes: 1 addition & 1 deletion src/raygun.breadcrumbs.js
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ window.raygunBreadcrumbsFactory = function(window, Raygun) {
error.duration = error.duration + 'ms';
self.recordBreadcrumb({
type: 'request',
message: 'Failed request to ' + error.requestUrl,
message: 'Failed request to ' + error.requestURL,
level: 'info',
metadata: error,
});
Expand Down

0 comments on commit f2be885

Please sign in to comment.