Fix scanner after deleting single file books #4459

This commit is contained in:
advplyr 2025-07-09 13:42:53 -05:00
parent 4102ed8be4
commit df1391d93f
3 changed files with 11 additions and 1 deletions

View file

@ -109,7 +109,7 @@ function getIno(path) {
.stat(path, { bigint: true })
.then((data) => String(data.ino))
.catch((err) => {
Logger.error('[Utils] Failed to get ino for path', path, err)
Logger.warn(`[Utils] Failed to get ino for path "${path}"`, err)
return null
})
}