Skip to content

Commit

Permalink
롯데 택배 배송완료 시간 파싱 에러 수정 (#181)
Browse files Browse the repository at this point in the history
  • Loading branch information
kanghw1103 authored Sep 4, 2023
1 parent dde15b8 commit 32bccaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/apiserver/carriers/kr.lotte/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function getTrack(trackId) {

result.unshift({
status: parseStatus(tds[0].textContent),
time: `${tds[1].textContent.replace(/\s+/g, 'T')}:00+09:00`,
time: `${tds[1].textContent.trim().replace(/\s+/g, 'T')}:00+09:00`,
location: {
name: tds[2].textContent.trim(),
},
Expand Down

0 comments on commit 32bccaf

Please sign in to comment.