@aptos-labs/wallet-adapter-core 7.9.1 → 7.9.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const WALLET_ADAPTER_CORE_VERSION = "7.9.1";
1
+ export declare const WALLET_ADAPTER_CORE_VERSION = "7.9.2";
2
2
  //# sourceMappingURL=version.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aptos-labs/wallet-adapter-core",
3
- "version": "7.9.1",
3
+ "version": "7.9.2",
4
4
  "description": "Aptos Wallet Adapter Core",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
package/src/WalletCore.ts CHANGED
@@ -554,7 +554,7 @@ export class WalletCore extends EventEmitter<WalletCoreEvents> {
554
554
  } else if (uninstalledWallet.name.includes("Metamask")) {
555
555
  // Metamask expects the raw URL as a path parameter
556
556
  // Format: https://link.metamask.io/dapp/aptos-labs.github.io
557
- parameter = window.location.host;
557
+ parameter = window.location.href;
558
558
  } else {
559
559
  parameter = encodeURIComponent(window.location.href);
560
560
  }
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const WALLET_ADAPTER_CORE_VERSION = "7.9.1";
1
+ export const WALLET_ADAPTER_CORE_VERSION = "7.9.2";