mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-07-03 05:55:06 +02:00
Fix "et al" cleanup
This commit is contained in:
parent
3c6d6bf688
commit
281de48ed4
1 changed files with 1 additions and 1 deletions
|
@ -463,7 +463,7 @@ function cleanAuthorForCompares(author) {
|
|||
// remove middle initials
|
||||
cleanAuthor = cleanAuthor.replace(/(?<=\w\w)(\s+[a-z]\.?)+(?=\s+\w\w)/g, '')
|
||||
// remove et al.
|
||||
cleanAuthor = cleanAuthor.replace(/et al\.?/g, '')
|
||||
cleanAuthor = cleanAuthor.replace(/ et al\.?(?= |$)/g, '')
|
||||
return cleanAuthor
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue