Skip to content

Commit

Permalink
fix: update reference id when fetch wallet address (#771)
Browse files Browse the repository at this point in the history
  • Loading branch information
abdulhakim2902 committed Feb 12, 2023
1 parent 538dc4b commit c85aaf6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/services/wallet-address.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -196,9 +196,10 @@ export class WalletAddressService {
},
});

const userId = unlockableContent.createdBy;
const referenceId = toWalletUser
? `${unlockableContent.id}/${toWalletUser.id}`
: unlockableContent.id;
? `${id}/${userId}/${toWalletUser.id}`
: `${id}/${userId}`;

return this.tipsBalanceInfo(
networkId,
Expand Down

0 comments on commit c85aaf6

Please sign in to comment.