Commit 5ad29325 authored by antirez's avatar antirez
Browse files

CG: XACK should return zero when nothing is processed.

parent 388c69fe
......@@ -1412,7 +1412,7 @@ void xackCommand(client *c) {
/* No key or group? Nothing to ack. */
if (o == NULL || group == NULL) {
addReply(c,shared.cone);
addReply(c,shared.czero);
return;
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment