Skip to content

Commit

Permalink
Merge pull request #52 from mfrankiewicz/bugfix/improper-value-in-ses…
Browse files Browse the repository at this point in the history
…sion-data

sets proper value for session data
  • Loading branch information
dbtlr authored Jun 18, 2018
2 parents 999763c + 6623643 commit 9cdef76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Airbrake/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ protected function initialize()
}

if ($this->get('sessionData') === null && isset($_SESSION)) {
$this->set('sessionData', (array) $_GET);
$this->set('sessionData', (array) $_SESSION);
}

$serverData = $this->get('serverData');
Expand Down

0 comments on commit 9cdef76

Please sign in to comment.