From a969e5c6c2c2a72e0f8542d1a02fd833e1a674a5 Mon Sep 17 00:00:00 2001
From: cgeek <cem.moreau@gmail.com>
Date: Sat, 14 Jul 2018 15:25:41 +0200
Subject: [PATCH] [fix] `dump` was not working displaying implicit revocation

---
 app/modules/dump.ts | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/app/modules/dump.ts b/app/modules/dump.ts
index be4d58d13..094e35a74 100644
--- a/app/modules/dump.ts
+++ b/app/modules/dump.ts
@@ -162,6 +162,8 @@ async function dumpHistory(server: Server, pub: string) {
       console.log('%s: join/renew', date)
     } else if (e.expired_on) {
       console.log('%s: expired', date)
+    } else if (e.revoked_on) {
+      console.log('%s: revoked', date)
     } else {
       console.log('Non displayable MINDEX entry')
     }
-- 
GitLab