Skip to content

Commit

Permalink
Fixed the check in "Ice/binding" test for detecting the browser envir…
Browse files Browse the repository at this point in the history
…onment
  • Loading branch information
pepone committed Nov 6, 2023
1 parent 03b1b64 commit 0d8c494
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/test/Ice/binding/Client.js
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@
{
const out = this.getWriter();
[communicator, args] = this.initialize(args);
if(typeof navigator !== 'undefined' && isSafari() && isWorker())
if(isBrowser && isSafari() && isWorker())
{
//
// BUGFIX:
Expand Down

0 comments on commit 0d8c494

Please sign in to comment.