mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-02-01 00:18:14 +01:00
Merge branch 'master' of https://github.com/advplyr/audiobookshelf
This commit is contained in:
commit
e8ea7efc98
@ -81,7 +81,12 @@ module.exports.getFileSize = async (path) => {
|
|||||||
* @returns {Promise<number>} epoch timestamp
|
* @returns {Promise<number>} epoch timestamp
|
||||||
*/
|
*/
|
||||||
module.exports.getFileMTimeMs = async (path) => {
|
module.exports.getFileMTimeMs = async (path) => {
|
||||||
return (await getFileStat(path))?.mtimeMs || 0
|
try {
|
||||||
|
return (await getFileStat(path))?.mtimeMs || 0
|
||||||
|
} catch (err) {
|
||||||
|
Logger.error(`[fileUtils] Failed to getFileMtimeMs`, err)
|
||||||
|
return 0
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user