Skip to content

Commit 32bccaf

Browse files
authored
롯데 택배 배송완료 시간 파싱 에러 수정 (#181)
1 parent dde15b8 commit 32bccaf

File tree

1 file changed

+1
-1
lines changed
  • packages/apiserver/carriers/kr.lotte

1 file changed

+1
-1
lines changed

packages/apiserver/carriers/kr.lotte/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ function getTrack(trackId) {
5656

5757
result.unshift({
5858
status: parseStatus(tds[0].textContent),
59-
time: `${tds[1].textContent.replace(/\s+/g, 'T')}:00+09:00`,
59+
time: `${tds[1].textContent.trim().replace(/\s+/g, 'T')}:00+09:00`,
6060
location: {
6161
name: tds[2].textContent.trim(),
6262
},

0 commit comments

Comments
 (0)