[bug] fix cache

This commit is contained in:
Avris 2021-07-12 22:30:49 +02:00
parent bc33d5953a
commit dcc2f96fa9
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ export class CacheObject {
async invalidate() {
if (fs.existsSync(this.path)) {
fs.unlinkSync();
fs.unlinkSync(this.path);
}
}
}