Skip to content

Commit

Permalink
fix: spaces in service name (#166)
Browse files Browse the repository at this point in the history
  • Loading branch information
rentallect authored Jun 12, 2023
1 parent 8aed087 commit 2741ce0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
"dependencies": {
"@auth0/auth0-spa-js": "^2.0.4",
"@babel/runtime": "^7.17.9",
"@openziti/ziti-browzer-core": "^0.24.0",
"@openziti/ziti-browzer-core": "^0.24.1",
"bowser": "^2.11.0",
"cookie-interceptor": "^1.0.0",
"core-js": "^3.22.8",
Expand Down
10 changes: 5 additions & 5 deletions src/runtime.js
Original file line number Diff line number Diff line change
Expand Up @@ -824,10 +824,10 @@ class ZitiBrowzerRuntime {
});
this.logger.trace(`ZitiBrowzerRuntime ${this._uuid} initializing`);

// Skip the status bar (for now) if on a mobile form-factor
if (!this.isOnMobile()) {
this._createStatusBar(this);
}
// Skip the status bar (for now)
// if (!this.isOnMobile()) {
// this._createStatusBar(this);
// }

// Facilitate removal of the bottom bar
document.addEventListener("click", function(e) {
Expand Down Expand Up @@ -1530,7 +1530,7 @@ if (isUndefined(window.zitiBrowzerRuntime)) {
var regex = new RegExp( `https://${zitiBrowzerRuntime.zitiConfig.httpAgent.self.host}`, 'gi' );
var regexSlash = new RegExp( /^\//, 'g' );
var regexDotSlash = new RegExp( /^\.\//, 'g' );
var regexZBWASM = new RegExp( /libcrypto.wasm/, 'g' );
var regexZBWASM = new RegExp( /libcrypto.*.wasm/, 'g' );


/**
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1183,10 +1183,10 @@
"@types/emscripten" "^1.39.6"
"@wasmer/wasi" "^1.0.2"

"@openziti/ziti-browzer-core@^0.24.0":
version "0.24.0"
resolved "https://registry.yarnpkg.com/@openziti/ziti-browzer-core/-/ziti-browzer-core-0.24.0.tgz#73e4ab1da2f8acaf8b0592b6b167293a31823470"
integrity sha512-PXvBoI2Y/RgXlpyJosn6yhqArGMpGP9O4DJB+0v7WZA9jfq6MzbohxPHA0XaqWAPIZ6d7j5+cAurek4b2Uqhqw==
"@openziti/ziti-browzer-core@^0.24.1":
version "0.24.1"
resolved "https://registry.yarnpkg.com/@openziti/ziti-browzer-core/-/ziti-browzer-core-0.24.1.tgz#fb97a572cc835c3096c6b821b9bf65f6a185fc37"
integrity sha512-ekYaK1m4Jj8LpdrH2qmQYydiln9VnxA/d83vYLQwNhKJDqpXnPoBK7TwKeJ5ntP2wH75f8FPVdD1aX4v1yF48A==
dependencies:
"@openziti/libcrypto-js" "^0.14.1"
"@openziti/ziti-browzer-edge-client" "^0.6.0"
Expand Down

0 comments on commit 2741ce0

Please sign in to comment.