make channel matching optional for reusability

pull/263/head
simon 2 years ago
parent cbb714c235
commit 231ac1e012
No known key found for this signature in database
GPG Key ID: 2C15AA5E89985DD4

@ -269,9 +269,12 @@ class PendingList(PendingIndex):
"vid_thumb_url": vid["thumbnail"],
"title": vid["title"],
"channel_id": vid["channel_id"],
"channel_indexed": vid["channel_id"] in self.all_channels,
"duration": duration_str,
"published": published,
"timestamp": int(datetime.now().strftime("%s")),
}
if self.all_channels:
youtube_details.update(
{"channel_indexed": vid["channel_id"] in self.all_channels}
)
return youtube_details

Loading…
Cancel
Save