gnunet-svn
[Top][All Lists]
Advanced

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

[reclaim-ui] 56/459: do not filter id and reclaim


From: gnunet
Subject: [reclaim-ui] 56/459: do not filter id and reclaim
Date: Fri, 11 Jun 2021 23:22:28 +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 547d31a25258133a2a02a9612c649c177d389e1e
Author: Schanzenbach, Martin <mschanzenbach@posteo.de>
AuthorDate: Thu May 2 16:50:03 2019 +0200

    do not filter id and reclaim
---
 src/app/identity-list/identity-list.component.ts | 10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/src/app/identity-list/identity-list.component.ts 
b/src/app/identity-list/identity-list.component.ts
index 6e41941..292790b 100644
--- a/src/app/identity-list/identity-list.component.ts
+++ b/src/app/identity-list/identity-list.component.ts
@@ -472,11 +472,7 @@ export class IdentityListComponent implements OnInit {
       var i;
       this.identityNameMapper = {};
       for (i = 0; i < identities.length; i++) {
-        //"reclaim" is the reclaim UI and API namespace!
         this.identityNameMapper[identities[i].pubkey] = identities[i].name;
-        if ("reclaim" === identities[i].name) {
-          continue;
-        }
         this.identities.push(identities[i]);
         if (this.identityInEditName === identities[i].name) {
           this.editIdentity(this.identities[this.identities.length - 1]);
@@ -485,10 +481,8 @@ export class IdentityListComponent implements OnInit {
       }
 
       identities.forEach(identity => {
-        if ("id" !== identity.name && "io" !== identity.name) {
-          this.updateAttributes(identity);
-          this.updateTickets(identity);
-        }
+        this.updateAttributes(identity);
+        this.updateTickets(identity);
       });
     });
   }

-- 
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]