Update LibraryItemController.js

update library item controller to log downloaded ebooks to fix #3215
This commit is contained in:
ic1415 2024-07-31 10:48:41 -04:00 committed by GitHub
parent 787c4e45a8
commit 9eb0ec76fe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -739,6 +739,8 @@ class LibraryItemController {
}
const ebookFilePath = ebookFile.metadata.path
Logger.info(`[LibraryItemController] User "${req.user.username}" requested download for item "${ebookFile.metadata.title}" at "${ebookFilePath}"`)
if (global.XAccel) {
const encodedURI = encodeUriPath(global.XAccel + ebookFilePath)
Logger.debug(`Use X-Accel to serve static file ${encodedURI}`)