Skip to content

Commit

Permalink
Merge pull request #2611 from LibreSign/backport/2610/stable28
Browse files Browse the repository at this point in the history
[stable28] Fix password field
  • Loading branch information
vitormattos authored Mar 28, 2024
2 parents 4964fca + a8330b8 commit abb9bf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Controller/SignFileController.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public function sign(int $fileId = null, string $signRequestUuid = null, string
$this->validateHelper->validateVisibleElementsRelation($elements, $signRequest, $user);
$this->validateHelper->validateCredentials($signRequest, $user, $method, $identifyValue, $token);
if ($method === 'password') {
$this->signFileService->setPassword($identifyValue);
$this->signFileService->setPassword($token);
} else {
$this->signFileService->setSignWithoutPassword(true);
}
Expand Down

0 comments on commit abb9bf4

Please sign in to comment.