From b877312cfecf242ca722eda9d25af7e6be63f79d Mon Sep 17 00:00:00 2001 From: Nirvana Date: Sat, 8 Aug 2026 19:40:19 +0200 Subject: [PATCH] add two attributes to content.py to_dict --- lib/streaming_providers/base/models/content.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/streaming_providers/base/models/content.py b/lib/streaming_providers/base/models/content.py index 0057fed..45df10b 100644 --- a/lib/streaming_providers/base/models/content.py +++ b/lib/streaming_providers/base/models/content.py @@ -135,6 +135,8 @@ class Content: "Country": self.country, "Language": self.language, "StreamingFormat": self.streaming_format, + "LicenseUrl": self.license_url, + "CertificateUrl": self.certificate_url, } if self.drm_config: result["DrmConfig"] = self.drm_config.to_dict()