diff --git a/pkg/probo/document_service.go b/pkg/probo/document_service.go index 5ac5e80ac..bd62c2912 100644 --- a/pkg/probo/document_service.go +++ b/pkg/probo/document_service.go @@ -1032,6 +1032,7 @@ func (s *DocumentService) createSignatureRequestInTx( if err == nil { return existingSignature, nil } + if !errors.Is(err, coredata.ErrResourceNotFound) { return nil, fmt.Errorf("cannot load existing signature for signatory: %w", err) }