Skip to content

Commit

Permalink
sets proper value for session data
Browse files Browse the repository at this point in the history
  • Loading branch information
mfrankiewicz committed Jun 18, 2018
1 parent 999763c commit 6623643
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 6623643

Please sign in to comment.