Add alias

This commit is contained in:
syuilo
2018-10-10 03:24:09 +09:00
parent db248a69c8
commit 9bebbf4e03
2 changed files with 2 additions and 1 deletions

View File

@ -58,6 +58,7 @@ export default class Connection {
case 'connect': this.onChannelConnectRequested(body); break;
case 'disconnect': this.onChannelDisconnectRequested(body); break;
case 'channel': this.onChannelMessageRequested(body); break;
case 'ch': this.onChannelMessageRequested(body); break; // alias
}
}