Skip to content

Commit

Permalink
hash is not being generated correctly (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
rossb220 committed Aug 29, 2017
1 parent 062e8b2 commit fc766ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Cache/HashTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public function hash($url, $id, array $headers)
$headerString = "";
foreach ($headers as $key => $value) {
if ($key != Headers::HEADER_XFF) {
$headerString = $key.$value;
$headerString .= $key.$value;
}
}

Expand Down

0 comments on commit fc766ec

Please sign in to comment.