Skip to content

Commit

Permalink
Merge pull request #71 from bookboon/feature/hash-identifiable
Browse files Browse the repository at this point in the history
feat: move app id outside of hashed cache key
  • Loading branch information
lkm authored Oct 25, 2021
2 parents c42f4b8 + 26c6913 commit f04062b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Client/HashTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ protected function hash(string $url, string $apiId, array $headers) : string
}
}

return sha1($apiId . $headerString . $url);
return $apiId . '.' . sha1($headerString . $url);
}

/**
Expand Down

0 comments on commit f04062b

Please sign in to comment.