diff --git a/src/Engines/FileCache.ts b/src/Engines/FileCache.ts index f19d509..f190d04 100644 --- a/src/Engines/FileCache.ts +++ b/src/Engines/FileCache.ts @@ -121,7 +121,7 @@ class FileCache implements EngineInterface { try { if (this.isCacheExist(key)) { const path = this.path() - fs.unlinkSync(path + '/' + this.hashKey(key)) + fs.unlinkSync(path + '/' + this.hashKey(key) + '.cache') return true } return false