From e945bc3742525eb05608501f4caff3a6314af669 Mon Sep 17 00:00:00 2001 From: Sledmore Date: Sun, 13 Mar 2022 00:01:30 +0000 Subject: [PATCH] Set offerid to the correct attribute. --- src/common/mapping/mappers/FurnitureDataMapper.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/mapping/mappers/FurnitureDataMapper.ts b/src/common/mapping/mappers/FurnitureDataMapper.ts index 5387840..088f959 100644 --- a/src/common/mapping/mappers/FurnitureDataMapper.ts +++ b/src/common/mapping/mappers/FurnitureDataMapper.ts @@ -64,7 +64,7 @@ export class FurnitureDataMapper extends Mapper furnitureType.name = typeXML.name; furnitureType.description = typeXML.description; furnitureType.adurl = typeXML.adurl; - furnitureType.offerid = typeXML.id; + furnitureType.offerid = typeXML.offerid; furnitureType.buyout = typeXML.buyout; furnitureType.rentofferid = typeXML.rentofferid; furnitureType.rentbuyout = typeXML.rentbuyout;