Skip to content

Commit e0c6c39

Browse files
author
Greg Bowler
committed
wip: suffix port to session id
1 parent d9361be commit e0c6c39

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/Middleware/RequestHandler.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,10 +220,12 @@ protected function handleSession():void {
220220
$sessionHandler = SessionSetup::attachHandler(
221221
$sessionConfig->getString("handler")
222222
);
223+
223224
$session = new Session(
224225
$sessionHandler,
225226
$sessionConfig,
226-
$sessionId
227+
$sessionId,
228+
$this->serviceContainer->get(ServerInfo::class)->getServerPort(),
227229
);
228230
$this->serviceContainer->set($session);
229231
}

0 commit comments

Comments
 (0)