Skip to content

Commit

Permalink
update for ui changes
Browse files Browse the repository at this point in the history
  • Loading branch information
PyaeSoneAungRgn committed May 8, 2023
1 parent ad198b8 commit 1691775
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TwoDigitCrawler.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ private function convertHtmlToDom(string $html): DomCrawler
private function filterValues(DomCrawler $dom): array
{
$set = $dom->filter('tr.table-active td')->eq(1)->text();
$val = $dom->filter('tr.table-active td')->eq(4)->text();
$val = $dom->filter('tr.table-active td')->eq(7)->text();
$status = $dom->filter('div > small.text-end')->text();
$status = trim(substr($status, strpos($status, ':') + 1));

Expand Down

0 comments on commit 1691775

Please sign in to comment.