gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[reclaim-ui] 299/459: fix claim missing check


From: gnunet
Subject: [reclaim-ui] 299/459: fix claim missing check
Date: Fri, 11 Jun 2021 23:26:31 +0200

This is an automated email from the git hooks/post-receive script.

martin-schanzenbach pushed a commit to branch master
in repository reclaim-ui.

commit b6ff9d44bcf6c0053fa8628f678529e61f7e30f2
Author: Martin Schanzenbach <mschanzenbach@posteo.de>
AuthorDate: Thu Aug 13 16:39:06 2020 +0200

    fix claim missing check
---
 src/app/identity-list/identity-list.component.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/app/identity-list/identity-list.component.ts 
b/src/app/identity-list/identity-list.component.ts
index bbd8100..75e09a0 100644
--- a/src/app/identity-list/identity-list.component.ts
+++ b/src/app/identity-list/identity-list.component.ts
@@ -415,7 +415,7 @@ export class IdentityListComponent implements OnInit {
     for (var claim of claims) {
       let found = false;
       for (let attr of this.getAttributesForIdentity(identity)) {
-        if (claim !== attr.name) {
+        if (claim === attr.name) {
           found = true;
           break;
         }

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]