added jitsi api + improvements

This commit is contained in:
_Bastler
2021-04-16 08:57:53 +02:00
parent 56362da724
commit ffe9e6f5ab
31 changed files with 4682 additions and 3202 deletions
+5 -2
View File
@@ -71,8 +71,11 @@ export class I18nService {
if(!from) {
return key;
} else if(from[key]) {
if(from[key]["."]) {
return this.insertArguments(from[key]["."], args);
if(typeof from[key] === 'object') {
if(from[key]["."]) {
return this.insertArguments(from[key]["."], args);
}
return key;
}
return this.insertArguments(from[key], args);
} else {