Closed ThomasTJdev closed 2 years ago
Reverts nim-lang/redis#28
@dom96 - I made a mistake in Githubs web UI! This PR fails. The new proc passes the channel-param inside a seq[string] which creates a seq[seq[string]] since it's already a seq[string].
channel
seq[string]
seq[seq[string]]
await r.sendCommand("SUBSCRIBE", @[channels]) # => Error: type mismatch: got <AsyncRedis, string, seq[seq[string]]>
should be
await r.sendCommand("SUBSCRIBE", channels)
Can you fix the new proc instead?
Of course. It was just for the git history.
Reverts nim-lang/redis#28
@dom96 - I made a mistake in Githubs web UI! This PR fails. The new proc passes the
channel
-param inside aseq[string]
which creates aseq[seq[string]]
since it's already aseq[string]
.should be