mirror of
https://github.com/gotson/komga.git
synced 2025-12-15 21:12:27 +01:00
fix: ensure tasksDB parent directory is created
This commit is contained in:
parent
756d9f91f8
commit
eb1e602b18
1 changed files with 1 additions and 0 deletions
|
|
@ -21,6 +21,7 @@ class KomgaProperties {
|
|||
private fun makeDirs() {
|
||||
try {
|
||||
Path(database.file).parent.createDirectories()
|
||||
Path(tasksDb.file).parent.createDirectories()
|
||||
} catch (_: Exception) {
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue