Skip to content

Commit

Permalink
HOTFIX: type on 323's .channel property.
Browse files Browse the repository at this point in the history
  • Loading branch information
Havvy committed Dec 10, 2014
1 parent 2c38c90 commit 128b8e2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tennu",
"version": "0.9.6",
"version": "0.9.7",
"description": "Tennu - Modular IRC Bot Framework for Node.js",
"maintainers": [
{
Expand Down Expand Up @@ -39,7 +39,7 @@
"dependencies": {
"simplesets": "^1.2.0",
"lodash": "^2.4.0",
"irc-socket": "^2.2.0",
"irc-socket": "^2.3.0",
"irc-message": "^1.0.0",
"tennu-plugins": "^3.1.0",
"commander": "^2.1.0",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/message.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ var extensions = {
'332': function (message) {
// :<server> 332 <me> <channel> :<topic>
message.replyname = 'RPL_TOPIC';
message.chanenl = message.params[1];
message.channel = message.params[1];
message.topic = message.params[2];
},

Expand Down

0 comments on commit 128b8e2

Please sign in to comment.