mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2024-11-10 09:07:47 +01:00
Add pollyfill for redis set
This commit is contained in:
parent
d3463bbef2
commit
eaaf3b8812
1 changed files with 3 additions and 0 deletions
|
@ -10,6 +10,9 @@ if (config.redis) {
|
|||
module.exports = {
|
||||
get: (key, callback) => {
|
||||
callback((true));
|
||||
},
|
||||
set: (key, value, callback) => {
|
||||
callback((true));
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue