mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
parent
b3e46d02c6
commit
b40423f3a3
@ -70,9 +70,9 @@ Handlebars.registerHelper('alternativeTitlesString', function() {
|
||||
});
|
||||
|
||||
if (titles.length === 1) {
|
||||
return titles[0];
|
||||
return '"' + titles[0] + '"';
|
||||
}
|
||||
return titles.slice(0,titles.length-1).join(", ") + " and " + titles[titles.length-1];
|
||||
return '"' + titles.slice(0,titles.length-1).join('", "') + '" and "' + titles[titles.length-1] + '"';
|
||||
});
|
||||
|
||||
Handlebars.registerHelper('GetStatus', function() {
|
||||
|
Loading…
Reference in New Issue
Block a user