From bd113dd46e748e064fd658fcb55ce057e2d894d5 Mon Sep 17 00:00:00 2001 From: Mattias Erming Date: Sun, 21 Sep 2014 09:48:01 -0700 Subject: [PATCH] Minor fix --- package.json | 2 +- src/models/chan.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 991f842..44d3faa 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "shout", "description": "A web IRC client", - "version": "0.32.0", + "version": "0.32.1", "author": "Mattias Erming", "preferGlobal": true, "bin": { diff --git a/src/models/chan.js b/src/models/chan.js index a8ba3ac..55f527f 100644 --- a/src/models/chan.js +++ b/src/models/chan.js @@ -16,7 +16,7 @@ function Chan(attr) { messages: [], name: "", type: Chan.Type.CHANNEL, - unread: 5, + unread: 0, users: [] }, attr)); }