Skip to content

Commit

Permalink
if credentialManifest!.issuedBy?.name is null use '' as issuer value
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkbee1 committed Mar 1, 2024
1 parent a7d02df commit a0a37f2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class MissingCredentialsView extends StatelessWidget {
String issuerName = '';

if (credentialManifest != null) {
issuerName = credentialManifest!.issuedBy!.name;
issuerName = credentialManifest!.issuedBy?.name ?? '';
}

if (query != null) {
Expand Down

0 comments on commit a0a37f2

Please sign in to comment.