From 31b2cd471f2209f1c509b85789a054c9c780b065 Mon Sep 17 00:00:00 2001 From: Offray Luna Date: Sat, 7 Jan 2023 14:08:51 -0500 Subject: [PATCH] Implementing channel data dictionary for a given video. --- app/BaselineOfVideoWeb/BaselineOfVideoWeb.class.st | 2 +- app/VideoWeb/Invidious.class.st | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/app/BaselineOfVideoWeb/BaselineOfVideoWeb.class.st b/app/BaselineOfVideoWeb/BaselineOfVideoWeb.class.st index aeab32f..1c30467 100644 --- a/app/BaselineOfVideoWeb/BaselineOfVideoWeb.class.st +++ b/app/BaselineOfVideoWeb/BaselineOfVideoWeb.class.st @@ -16,5 +16,5 @@ BaselineOfVideoWeb >> baseline: spec [ { #category : #accessing } BaselineOfVideoWeb >> semanticVersion [ - ^ '0.2.0' + ^ '0.2.1' ] diff --git a/app/VideoWeb/Invidious.class.st b/app/VideoWeb/Invidious.class.st index 6bcaa15..87994a9 100644 --- a/app/VideoWeb/Invidious.class.st +++ b/app/VideoWeb/Invidious.class.st @@ -88,6 +88,11 @@ Invidious >> channel: authorId [ ^ STONJSON fromString: queryURL asUrl retrieveContents ] +{ #category : #accessing } +Invidious >> channelContainingVideo: videoID [ + ^ self channel: (self video: videoID) authorId +] + { #category : #accessing } Invidious >> fromDictionary: aDictionary [ | rawMonitor|