Minor fix

This commit is contained in:
Mattias Erming 2014-09-21 09:48:01 -07:00
parent 3597e89c91
commit bd113dd46e
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
{ {
"name": "shout", "name": "shout",
"description": "A web IRC client", "description": "A web IRC client",
"version": "0.32.0", "version": "0.32.1",
"author": "Mattias Erming", "author": "Mattias Erming",
"preferGlobal": true, "preferGlobal": true,
"bin": { "bin": {

View File

@ -16,7 +16,7 @@ function Chan(attr) {
messages: [], messages: [],
name: "", name: "",
type: Chan.Type.CHANNEL, type: Chan.Type.CHANNEL,
unread: 5, unread: 0,
users: [] users: []
}, attr)); }, attr));
} }