fix(all): Enable https in place.

This commit is contained in:
Rodrigo Rodriguez 2022-02-04 18:35:40 -03:00
parent 4779d4968f
commit 722a950033

View file

@ -910,11 +910,12 @@ export class GBConversationalService {
});
}
const locale = systemUser?systemUser.locale:null;
text = await min.conversationalService.translate(
min,
text,
systemUser.locale
? systemUser.locale
locale
? locale
: min.core.getParam<string>(min.instance, 'Locale', GBConfigService.get('LOCALE'))
);