mirror of
				https://github.com/advplyr/audiobookshelf.git
				synced 2025-10-27 11:18:14 +01:00 
			
		
		
		
	Merge pull request #3585 from snakehnb/master
Avoid parsing first and last names in Chinese, Japanese and Korean la…
This commit is contained in:
		
						commit
						0c244cbf95
					
				| @ -52,6 +52,13 @@ module.exports.parse = (nameString) => { | ||||
|   } | ||||
|   if (splitNames.length) splitNames = splitNames.map((a) => a.trim()) | ||||
| 
 | ||||
|   // If names are in Chinese,Japanese and Korean languages, return as is.
 | ||||
|   if (/[\u4e00-\u9fff\u3040-\u30ff\u31f0-\u31ff]/.test(splitNames[0])) { | ||||
|     return { | ||||
|       names: splitNames | ||||
|     } | ||||
|   } | ||||
| 
 | ||||
|   var names = [] | ||||
| 
 | ||||
|   // 1 name FIRST LAST
 | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user