1
0
mirror of https://github.com/django/django.git synced 2025-04-04 05:26:43 +00:00

Fixed #35278 -- Fixed returning possibly undefined from and functions.

This commit is contained in:
Piotr Kawula 2024-03-07 09:36:41 +01:00
parent c4df2a7776
commit 76f4b0c0f3

View File

@ -33,7 +33,13 @@
if (typeof value === 'undefined') {
return msgid;
} else {
return (typeof value === 'string') ? value : value[0];
if (typeof value === 'string') {
return value;
}
const text = value[0];
return typeof text === 'string' ? text : msgid;
}
};
@ -42,7 +48,17 @@
if (typeof value === 'undefined') {
return (count == 1) ? singular : plural;
} else {
return value.constructor === Array ? value[django.pluralidx(count)] : value;
if (value.constructor === Array) {
const text = value[django.pluralidx(count)];
if (typeof text === 'undefined') {
return (count == 1) ? singular : plural;
} else {
return text;
}
}
return value;
}
};