dont error if ejectFromCache is called when the response is already not cached
This commit is contained in:
@ -25,8 +25,14 @@ class Response {
|
||||
return this.bodyBuffer;
|
||||
}
|
||||
|
||||
ejectFromCache() {
|
||||
return fs.promises.unlink(this.cacheFilePath);
|
||||
async ejectFromCache() {
|
||||
try {
|
||||
await fs.promises.unlink(this.cacheFilePath);
|
||||
} catch (err) {
|
||||
if (err.code !== 'ENOENT') {
|
||||
throw err;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user