Skip to content

Commit

Permalink
[EasyBugsnag] Fix session_tracking enable in Laravel (#611)
Browse files Browse the repository at this point in the history
  • Loading branch information
natepage authored Jun 30, 2021
1 parent 8c4f004 commit e93c2b9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ private function registerRequestResolver(): void
*/
private function registerSessionTracking(): void
{
if (\config('easy-bugsnag.session_tracking', false) === false) {
if (\config('easy-bugsnag.session_tracking', false)) {
$this->app->make('events')->listen(RouteMatched::class, SessionTrackingListener::class);
}
}
Expand Down

0 comments on commit e93c2b9

Please sign in to comment.