Skip to content

Commit

Permalink
save token with correct safeAddress
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlosQ96 committed Sep 23, 2023
1 parent 83d4ef3 commit ddd35fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/controllers/v1/multisigAuthenticationController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ export class MultisigAuthenticationController {
(await multisigSession.multisigStatus(safeMessage)) ===
MultisigStatuses.Successful
) {
token = await generateAccessToken({ address: safeMessage.safe });
logger.info(`Multisig with address ${safeMessage.safe} logged in`);
token = await generateAccessToken({ address: body.safeAddress });
logger.info(`Multisig with address ${body.safeAddress} logged in`);
}

return {
Expand Down

0 comments on commit ddd35fe

Please sign in to comment.