From 88e65e2d23c5c3acc1cf5ded970f0276f09cba28 Mon Sep 17 00:00:00 2001 From: Cayo Puigdefabregas Date: Fri, 8 Mar 2024 15:27:34 +0100 Subject: [PATCH] fix doble http in vc_id --- idhub/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idhub/models.py b/idhub/models.py index 2eae07f..7843d4c 100644 --- a/idhub/models.py +++ b/idhub/models.py @@ -704,7 +704,7 @@ class VerificableCredential(models.Model): cred_path = 'public/credentials' sid = self.hash - url_id = "https://{}/{}/{}".format( + url_id = "{}/{}/{}".format( domain, cred_path, sid