Skip to content

Commit

Permalink
add condition for abos titkok (#391)
Browse files Browse the repository at this point in the history
  • Loading branch information
hichri-louay authored Jan 11, 2024
2 parents c4b6b6a + bbf11d2 commit c8c0028
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controllers/campaign.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -1190,7 +1190,7 @@ exports.validateCampaign = async (req, res) => {
campaignLink.typeSN,
campaignLink.idPost,
campaignLink.idUser,
campaignLink.abosNumber,
!isNaN(campaignLink.abosNumber) ? campaignLink.abosNumber : 0,
ownerLink,
(typeof campaignLink.userExternal !== 'undefined' && campaignLink.userExternal === true) ? messageHashSignature : signature.messageHash ,
signature.v,
Expand Down

0 comments on commit c8c0028

Please sign in to comment.