We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a3bd1e commit 3b1c10cCopy full SHA for 3b1c10c
@stellar/typescript-wallet-sdk/src/walletSdk/Uri/sep7Parser.ts
@@ -186,7 +186,7 @@ export const sep7ReplacementsFromString = (
186
187
const isBalanced =
188
txrepIds.length === hintIds.length &&
189
- txrepIds.every((id) => hintsMap.hasOwnProperty(id));
+ txrepIds.every((id) => Object.prototype.hasOwnProperty.call(hintsMap, id));
190
191
if (!isBalanced) {
192
throw new Sep7InvalidUriError(
0 commit comments