Skip to content

Commit d4a5ec8

Browse files
committed
Fix URL condition in parseResponse function to improve data handling for service requests
1 parent 3e979ca commit d4a5ec8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ function parseResponse(response, method, url, sendTime, agent, originalStatus, t
374374
}
375375
}
376376
}
377-
}else if(url.includes("/service/service.php?data=")){
377+
}else if(url.includes("/service/service.php?")){
378378
if (response.data.transfers.length>0){
379379
lastTimestamp = response.data.transfers[response.data.transfers.length-1].timestamp;
380380
firstTimestamp = response.data.transfers[0].timestamp;

0 commit comments

Comments
 (0)