Skip to content

Commit

Permalink
lib/message: Force return empty qs if param is null
Browse files Browse the repository at this point in the history
  • Loading branch information
sogehelper authored and sogehige committed May 29, 2018
1 parent e5a25e3 commit ed9f1b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/message.js
Expand Up @@ -474,7 +474,7 @@ class Message {
await this.parseMessageEach(math); d('parseMessageEach: %s', this.message)
await this.parseMessageOnline(online); d('parseMessageOnline: %s', this.message)
await this.parseMessageCommand(command); d('parseMessageCommand: %s', this.message)
await this.parseMessageEach(qs); d('parseMessageEach: %s', this.message)
await this.parseMessageEach(qs, false); d('parseMessageEach: %s', this.message)
await this.parseMessageEach(list); d('parseMessageEach: %s', this.message)
await this.parseMessageEach(stream); d('parseMessageEach: %s', this.message)
await this.parseMessageApi(); d('parseMessageApi: %s', this.message)
Expand Down

0 comments on commit ed9f1b4

Please sign in to comment.