mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-08-08 23:04:51 +02:00
Fix:Podcast schedule max new episodes to download setting to 0 and fix input blurs #2680
This commit is contained in:
@ -114,7 +114,9 @@ module.exports.reqSupportsWebp = (req) => {
|
||||
module.exports.areEquivalent = areEquivalent
|
||||
|
||||
module.exports.copyValue = (val) => {
|
||||
if (!val) return val === false ? false : null
|
||||
if (val === undefined || val === '') return null
|
||||
else if (!val) return val
|
||||
|
||||
if (!this.isObject(val)) return val
|
||||
|
||||
if (Array.isArray(val)) {
|
||||
|
Reference in New Issue
Block a user