Skip to content

Commit

Permalink
Merge pull request #316 from amosproj/fix-create-proof-template
Browse files Browse the repository at this point in the history
fixed bug during create proof template which resulted in a Nullpointe…
  • Loading branch information
annikakrause committed Jul 24, 2022
2 parents 9ca31f7 + c2dbc7f commit d946a78
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export class CptStep4Component implements OnInit {
proofTemplate,
this.linkedAttributes
);
let body: object = {};
let body: object | null = null;
if (this.linkedAttributes.length != 0) {
body = this.httpParamBuilder.buildAutoIssueActionBody(
this.goalCredDef,
Expand Down

0 comments on commit d946a78

Please sign in to comment.