From 961980f8524cdaa7fc6d68cc037e1ab8f29b1fff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89mile=20R=C3=A9?= Date: Wed, 11 Mar 2026 14:17:37 +0400 Subject: [PATCH] Fix instanciate url.Values MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Émile Ré --- pkg/probo/document_service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/probo/document_service.go b/pkg/probo/document_service.go index 6405f65ea..33cf691b0 100644 --- a/pkg/probo/document_service.go +++ b/pkg/probo/document_service.go @@ -615,7 +615,7 @@ func (s *DocumentService) SendSigningNotifications( var ( employeeDocumentsURLPath = "/organizations/" + organizationID.String() + "/employee" emailLinkURLPath = employeeDocumentsURLPath - query url.Values + query = make(url.Values) ) if signatory.State != coredata.ProfileStateActive { if signatory.Source != coredata.ProfileSourceSCIM {