mirror of
https://github.com/unshackle-dl/unshackle.git
synced 2026-03-10 16:39:01 +00:00
Fix
This commit is contained in:
@@ -409,8 +409,8 @@ class Service(metaclass=ABCMeta):
|
|||||||
:param title: The current `Title` from get_titles that is being executed. This is provided in
|
:param title: The current `Title` from get_titles that is being executed. This is provided in
|
||||||
case it has data needed to be used, e.g. for a HTTP request.
|
case it has data needed to be used, e.g. for a HTTP request.
|
||||||
:param track: The current `Track` needing decryption. Provided for same reason as `title`.
|
:param track: The current `Track` needing decryption. Provided for same reason as `title`.
|
||||||
:return: The License response as Bytes. Return the raw response from the server
|
:return: The License response as Bytes or a Base64 string. Don't Base64 Encode or
|
||||||
to avoid unnecessary processing.
|
Decode the data, return as is to reduce unnecessary computations.
|
||||||
"""
|
"""
|
||||||
# Delegates license handling to the Widevine license method by default if a service-specific PlayReady implementation is not provided.
|
# Delegates license handling to the Widevine license method by default if a service-specific PlayReady implementation is not provided.
|
||||||
return self.get_widevine_license(challenge=challenge, title=title, track=track)
|
return self.get_widevine_license(challenge=challenge, title=title, track=track)
|
||||||
|
|||||||
Reference in New Issue
Block a user