Skip to content

Commit

Permalink
[hotfix] 무신사 파싱 중 아이템 가격 누락되는 이슈 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
hyejungg committed Jul 23, 2023
1 parent b92a6cc commit 14236ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ const parsingForMusinsa = async (url) => {
}
}
});
itemPrice = priceValue[priceValue.length - 4];
itemPrice = priceValue[priceValue.length - 3];
}
});
itemPrice = itemPrice ? getPriceWithoutString(itemPrice) : undefined;
Expand Down

0 comments on commit 14236ad

Please sign in to comment.