Skip to content
This repository was archived by the owner on Nov 15, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
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
6 changes: 5 additions & 1 deletion api_server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
# Change Log

## [15.6.0] - 2024-6-3
## [15.6.0] - 2024-6-6

### Changed

- Backend changes to support refactor of errors integration

### Fixed

- Fixes an issue with opening in IDE from New Relic using Firefox

## [15.5.0] - 2024-4-29

### Changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,10 @@
successCb && successCb();
}

function unsupportedCallback() {
unsupportedCb && unsupportedCb();
}

if (navigator.msLaunchUri) { //for IE and Edge in Win 8 and Win 10
openUriWithMsLaunchUri(uri, failCb, successCb);
} else {
Expand All @@ -276,8 +280,9 @@
} else if (browser.isSafari) {
openUriWithHiddenFrame(uri, failCallback, successCallback);
} else {
unsupportedCb();
//not supported, implement please
unsupportedCallback();
// this works for most common browsers, so we try it if detection fails
openUriWithTimeoutHack(uri, failCallback, successCallback);
}
}
}
Expand Down