Fix Redis store 'delete' command bug

This commit is contained in:
Alan Friedman 2020-09-25 07:41:22 -04:00
parent 8e7b782f0b
commit ba33753b61
No known key found for this signature in database
GPG Key ID: BE591677C95879C6

View File

@ -27,7 +27,7 @@ export class RedisStore {
}
del(key, field) {
return this.hdelAsync(key, field);
return this.redis.hdelAsync(key, field);
}
inc(key, field, inc = 1) {