Skip to content

Commit 8778257

Browse files
committed
fix: stabilize anonymous signature elements session key
Signed-off-by: Vitor Mattos <[email protected]>
1 parent b4adab4 commit 8778257

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

lib/Service/SessionService.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ public function getSignStartTime(): int {
2727
}
2828

2929
public function getSessionId(): string {
30+
$uuid = $this->session->get('libresign-uuid');
31+
if (is_string($uuid) && $uuid !== '') {
32+
return $uuid;
33+
}
3034
return $this->session->getId();
3135
}
3236

0 commit comments

Comments
 (0)