From c01e3993ce021fcfcb17aaa2724247b5b6c9232a Mon Sep 17 00:00:00 2001 From: CodeName393 Date: Wed, 25 Feb 2026 01:34:24 +0900 Subject: [PATCH] Fix 1 --- unshackle/core/service.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/unshackle/core/service.py b/unshackle/core/service.py index d518be1..e0e81b8 100644 --- a/unshackle/core/service.py +++ b/unshackle/core/service.py @@ -314,6 +314,8 @@ class Service(metaclass=ABCMeta): :return: The License response as Bytes. Return the raw response from the server to avoid unnecessary processing. """ + # Delegates license handling to the Widevine license method by default if a service-specific PlayReady implementation is not provided. + self.get_widevine_license(challenge=challenge, title=title, track=track) # Required Abstract functions # The following functions *must* be implemented by the Service.