diff --git a/common/normalize-title.js b/common/normalize-title.js index 0cc33eae..4a737ce6 100644 --- a/common/normalize-title.js +++ b/common/normalize-title.js @@ -823,6 +823,8 @@ function normalizeTitle(title, options) { "Pineapple cocktails, live music + ", "Pineapple cocktails, live music & ", ], + ["CHUNGKING EXPRESS + ", "CHUNGKING EXPRESS & "], + ["KIDS + ", "KIDS & "], ["BA Media Degree Show — Screening:", "BA Media Degree Show - "], ["CANCELLED DUE TO ILLNESS - ", "CANCELLED DUE TO ILLNESS: "], ["libya in motion (2015) film shorts", "libya in motion (2015)"], diff --git a/common/tests/test-titles.json b/common/tests/test-titles.json index a9d39312..18abd3bb 100644 --- a/common/tests/test-titles.json +++ b/common/tests/test-titles.json @@ -79682,5 +79682,29 @@ { "input": "The Cabinet of Dr Caligari (1920) with live score", "output": "cabinet of dr caligari (1920)" + }, + { + "input": "CHUNGKING EXPRESS + FALLEN ANGELS", + "output": "chungking express fallen angels" + }, + { + "input": "KIDS + BULLY ", + "output": "kids bully" + }, + { + "input": "Dhamaal 4", + "output": "dhamaal 4" + }, + { + "input": "ATEEZ: LIGHT THE WAY IN CINEMAS", + "output": "ateez light the way" + }, + { + "input": "Manhunter : The Final Cut", + "output": "manhunter" + }, + { + "input": "Choose What You Pay: Will & Harper", + "output": "will harper" } ]