I added products with the same code to Prestashop 1.7.2.4 without problem, but when I change url and account and try to do the same with another Prestashop v1.7.4.3 I get an error like System.InvalidOperationException: 'El objeto que acepta valores Null debe tener un valor.'
`
ProductFactory prodFactory = new ProductFactory(BaseUrl, Account, Password);
Additional information Prestasharp: 1.0.5 PrestaShop version: 1.7.4.3 PHP version: PHP 7.2
I added products with the same code to Prestashop 1.7.2.4 without problem, but when I change url and account and try to do the same with another Prestashop v1.7.4.3 I get an error like System.InvalidOperationException: 'El objeto que acepta valores Null debe tener un valor.'
` ProductFactory prodFactory = new ProductFactory(BaseUrl, Account, Password);
Bukimedia.PrestaSharp.Entities.AuxEntities.language idioma;
product p = new product();
idioma = new Bukimedia.PrestaSharp.Entities.AuxEntities.language();
idioma.id = 1; idioma.Value = "Test product name"
p.name.Add(idioma);
prodFactory.Add(p); `
366