This commit is contained in:
syuilo 2018-02-10 10:32:59 +09:00
parent ff7bb97d8e
commit f339d028d2

View file

@ -24,12 +24,12 @@ export default class Replacer {
return key; // Fallback
}
let text;
let text = texts;
// Check the key existance
const error = key.split('.').some(k => {
if (texts.hasOwnProperty(k)) {
text = texts[k];
if (text.hasOwnProperty(k)) {
text = text[k];
return false;
} else {
return true;