Skip to content

Commit

Permalink
Bug fix for setEvidenceAsync
Browse files Browse the repository at this point in the history
  • Loading branch information
Lomilar committed Apr 15, 2019
1 parent 416dbf2 commit eba45f7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,7 @@ public void setEvidenceAsync(Array<String> evidences, final Callback0 success, C
new EcAsyncHelper<String>().each(evidences, new Callback2<String, Callback0>() {
@Override
public void $invoke(String s, final Callback0 callback0) {
EcEncryptedValue.encryptValueAsync(s, id, subject.owner, subject.reader, new Callback1<EcEncryptedValue>() {
EcEncryptedValue.encryptValueAsync(s, me.id, me.subject.owner, me.subject.reader, new Callback1<EcEncryptedValue>() {
@Override
public void $invoke(EcEncryptedValue ecEncryptedValue) {
encryptedValues.push(ecEncryptedValue);
Expand Down

0 comments on commit eba45f7

Please sign in to comment.