From dd5c82b06c5cfb2c717fd3b9a9598d789092587c Mon Sep 17 00:00:00 2001 From: Anders Rune Jensen Date: Sat, 15 Apr 2017 13:23:33 +0200 Subject: [PATCH] handle dns & pub messages --- index.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/index.js b/index.js index c52faf1..4fe2bb1 100644 --- a/index.js +++ b/index.js @@ -569,6 +569,10 @@ function render(opts, c) return ' created an issue' else if (c.type == 'git-update') return ' did a git update' + else if (c.type == 'ssb-dns') + return ' updated dns' + else if (c.type == 'pub') + return ' connected to a pub' else return renderDefault(c) }