diff --git a/index.js b/index.js
index 6176a50..72f2eb4 100644
--- a/index.js
+++ b/index.js
@@ -596,6 +596,12 @@ function render(opts, c)
name = c.contactAbout.name
return ' followed ' + name + ""
}
+ else if (c.type == 'contact' && !c.following) {
+ var name = c.contact
+ if (typeof c.contactAbout != 'undefined')
+ name = c.contactAbout.name
+ return ' unfollowed ' + name + ""
+ }
else if (typeof c == 'string')
return ' wrote something private '
else if (c.type == 'about')