Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Read encrypted session data again on reopen
Signed-off-by: Julius Härtl <[email protected]>
  • Loading branch information
juliusknorr committed Nov 3, 2022
commit 2ff840b5c151c3659ee6de29f52e9d8ea77cfaed
6 changes: 5 additions & 1 deletion lib/private/Session/CryptoSessionData.php
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,11 @@ public function clear() {
}

public function reopen(): bool {
return $this->session->reopen();
$reopened = $this->session->reopen();
if ($reopened) {
$this->initializeSession();
}
return $reopened;
}

/**
Expand Down