Prevent panic during nil to string type assertion; closes #1319

This commit is contained in:
Mahmud Ridwan 2020-05-11 23:04:19 +06:00
parent 99cd690a70
commit a204d6794a
1 changed files with 2 additions and 1 deletions

View File

@ -309,9 +309,10 @@ func (c *PubSub) newMessage(reply interface{}) (interface{}, error) {
case []interface{}:
switch kind := reply[0].(string); kind {
case "subscribe", "unsubscribe", "psubscribe", "punsubscribe":
channel, _ := reply[1].(string)
return &Subscription{
Kind: kind,
Channel: reply[1].(string),
Channel: channel,
Count: int(reply[2].(int64)),
}, nil
case "message":