update Cache folder creation to leverage ensureDirs

This commit is contained in:
jmt-gh 2022-06-06 08:18:15 -07:00
parent 35f29ca22b
commit c606a41314

View File

@ -19,17 +19,17 @@ class CacheManager {
var pathsCreated = false
if (!(await fs.pathExists(this.CachePath))) {
await fs.mkdir(this.CachePath)
await fs.ensureDir(this.CachePath)
pathsCreated = true
}
if (!(await fs.pathExists(this.CoverCachePath))) {
await fs.mkdir(this.CoverCachePath)
await fs.ensureDir(this.CoverCachePath)
pathsCreated = true
}
if (!(await fs.pathExists(this.ImageCachePath))) {
await fs.mkdir(this.ImageCachePath)
await fs.ensureDir(this.ImageCachePath)
pathsCreated = true
}