mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-03-22 02:18:54 +01:00
Implement a stricter check for possible ASIN values in titles
This commit is contained in:
@@ -37,7 +37,7 @@ class Audible {
|
||||
}
|
||||
|
||||
isProbablyAsin(title) {
|
||||
return /[0-9A-Z]{10}/.test(title)
|
||||
return /^[0-9A-Z]{10}$/.test(title)
|
||||
}
|
||||
|
||||
asinSearch(asin) {
|
||||
|
||||
Reference in New Issue
Block a user