Skip to content

Commit

Permalink
Merge pull request #292 from matrix-org/rav/fix_megolm_keys
Browse files Browse the repository at this point in the history
Fix bug in verifying megolm event senders
  • Loading branch information
richvdh authored Nov 16, 2016
2 parents 909b56d + 5b4aedd commit af95dca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/crypto/algorithms/megolm.js
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ MegolmDecryption.prototype.decryptEvent = function(event) {
);
}

event.setClearData(payload, res.keysClaimed, res.keysProved);
event.setClearData(payload, res.keysProved, res.keysClaimed);
};


Expand Down

0 comments on commit af95dca

Please sign in to comment.