From eefb6fcad7b18637d3ced7f9c2eb4deea70b8a9a Mon Sep 17 00:00:00 2001 From: CodeName393 Date: Wed, 25 Feb 2026 01:44:33 +0900 Subject: [PATCH] Fix --- unshackle/core/service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unshackle/core/service.py b/unshackle/core/service.py index e0e81b8..d4a3cf7 100644 --- a/unshackle/core/service.py +++ b/unshackle/core/service.py @@ -315,7 +315,7 @@ class Service(metaclass=ABCMeta): 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) + return self.get_widevine_license(challenge=challenge, title=title, track=track) # Required Abstract functions # The following functions *must* be implemented by the Service.