From fcc0fb3b79a5f958a3ca4023e0468243cb0665a2 Mon Sep 17 00:00:00 2001 From: hyugogirubato <65763543+hyugogirubato@users.noreply.github.com> Date: Sun, 7 Jul 2024 10:07:14 +0200 Subject: [PATCH] Simplify client id call form challenge --- keydive/cdm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keydive/cdm.py b/keydive/cdm.py index 4c8003f..852fa84 100644 --- a/keydive/cdm.py +++ b/keydive/cdm.py @@ -76,7 +76,7 @@ class Cdm: license_request.ParseFromString(signed_message.msg) client_id: ClientIdentification = license_request.client_id - self.set_client_id(data=client_id.SerializeToString()) + self.set_client_id(data=client_id) except Exception as e: self.logger.error('Error parsing challenge: %s', e)