Skip to content

Commit d1c3a1a

Browse files
committed
Fix issue with getTarget('/')
1 parent 07bfe07 commit d1c3a1a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/store/redis.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ function getKeyPaths (path) {
4343

4444
while (parts.length) {
4545
key = parts.pop();
46-
keys.push(parts.join("/") + "/" + key);
46+
if (key) {
47+
keys.push(parts.join("/") + "/" + key);
48+
}
4749
}
4850

4951
return keys.concat("/");

0 commit comments

Comments
 (0)