Added joining servers and better message handling

This commit is contained in:
hydrabolt
2015-08-17 21:02:18 +01:00
parent 945fe8f65e
commit 93361925ab
7 changed files with 110 additions and 44 deletions

View File

@@ -16,7 +16,7 @@ exports.Channel = function(name, server, type, id, isPrivate){
this.type = type;
this.id = id;
this.isPrivate = isPrivate;
this.messages = new List("id", "5000");
this.messages = new List("id", 5000);
}
exports.Channel.equals = function(otherChannel){