Skip to content

Commit

Permalink
Merge pull request #2610 from LibreSign/bugfix/password-field
Browse files Browse the repository at this point in the history
Fix password field
  • Loading branch information
vitormattos authored Mar 28, 2024
2 parents 8643cdb + d48752c commit 7bd04c6
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 7bd04c6

Please sign in to comment.