From 0c92977f5ac05a62ebc98edfe958befc6cae3ec8 Mon Sep 17 00:00:00 2001 From: chu23465 <130033130+chu23465@users.noreply.github.com> Date: Mon, 14 Apr 2025 08:38:38 +0530 Subject: [PATCH] Remove decode in license challenge (DSNP) --- vinetrimmer/services/disneyplus.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vinetrimmer/services/disneyplus.py b/vinetrimmer/services/disneyplus.py index 9ab6f66..96dc92c 100644 --- a/vinetrimmer/services/disneyplus.py +++ b/vinetrimmer/services/disneyplus.py @@ -196,7 +196,7 @@ class DisneyPlus(BaseService): if self.playready: res = self.bamsdk.drm.playreadyLicense( - licence=challenge.decode(), # expects XML + licence=challenge, # expects XML access_token=self.account_tokens["access_token"] ) res = base64.b64encode(res).decode()