diff --git a/index.js b/index.js index 2e8e0c2..c58adab 100644 --- a/index.js +++ b/index.js @@ -617,6 +617,8 @@ function render(opts, c) return ' connected to a pub' else if (c.type == 'channel' && c.subscribed) return ' subscribed to channel #' + c.channel + "" + else if (c.type == 'channel' && !c.subscribed) + return ' unsubscribed from channel #' + c.channel + "" else return renderDefault(c) }