Add: old podcast ID to unknown formats

This commit is contained in:
Nicholas Wallace 2024-08-03 21:45:21 -07:00
parent 4bf279588b
commit 0585f81523

View file

@ -231,7 +231,7 @@ class Server {
validate: (v) => /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.test(v.toString()) validate: (v) => /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.test(v.toString())
} }
], ],
unknownFormats: ['li_[a-z0-9]{18}', '[0-9]*'], unknownFormats: ['li_[a-z0-9]{18}', 'pod_[a-z0-9]{18}', '[0-9]*'],
ignoreUndocumented: true ignoreUndocumented: true
}) })
) )