sponsorblock fix, #build

Changed:
- Fixes sponsorblock integration after remote API change
pull/413/head
simon 2 years ago
commit 7f603cb06a
No known key found for this signature in database
GPG Key ID: 2C15AA5E89985DD4

@ -73,20 +73,14 @@ class SponsorBlock:
def _get_sponsor_dict(self, all_segments):
"""format and process response"""
has_unlocked = False
cleaned_segments = []
for segment in all_segments:
if not segment["locked"]:
has_unlocked = True
del segment["userID"]
del segment["description"]
cleaned_segments.append(segment)
_ = [i.pop("description", None) for i in all_segments]
has_unlocked = not any(i.get("locked") for i in all_segments)
sponsor_dict = {
"last_refresh": self.last_refresh,
"has_unlocked": has_unlocked,
"is_enabled": True,
"segments": cleaned_segments,
"segments": all_segments,
}
return sponsor_dict

Loading…
Cancel
Save