Skip to content

Commit

Permalink
make the crawler case sensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Nov 4, 2015
1 parent 0f8bbd5 commit 035233e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Url.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function __construct($url)

foreach (['scheme', 'host', 'path'] as $property) {
if (isset($urlProperties[$property])) {
$this->$property = strtolower($urlProperties[$property]);
$this->$property = $urlProperties[$property];
}
}
}
Expand Down

0 comments on commit 035233e

Please sign in to comment.