Skip to content

Commit

Permalink
Fix email monitoring
Browse files Browse the repository at this point in the history
  • Loading branch information
ilvalerione committed Feb 19, 2022
1 parent e42ee57 commit 603b934
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/InspectorServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class InspectorServiceProvider extends ServiceProvider
*
* @var string
*/
const VERSION = '4.7.19';
const VERSION = '4.7.20';

/**
* Booting of services.
Expand Down
3 changes: 1 addition & 2 deletions src/Providers/EmailServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ public function register()
*/
protected function getSegmentKey($message)
{
// The methods used to generate the hash are consistent across Laravel versions up to v9.
return sha1(json_encode($message->getTo()).$message->getSubject().$message->getDate());
return sha1(json_encode($message->getTo()).$message->getSubject());
}
}

0 comments on commit 603b934

Please sign in to comment.