This commit is contained in:
CodeName393
2026-02-25 01:34:24 +09:00
committed by GitHub
parent eba9f846b0
commit c01e3993ce

View File

@@ -314,6 +314,8 @@ class Service(metaclass=ABCMeta):
:return: The License response as Bytes. Return the raw response from the server :return: The License response as Bytes. Return the raw response from the server
to avoid unnecessary processing. 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 # Required Abstract functions
# The following functions *must* be implemented by the Service. # The following functions *must* be implemented by the Service.