From 348e32a5511a10fd7ee4a632049f38bf2507f911 Mon Sep 17 00:00:00 2001 From: pika Date: Mon, 9 Dec 2024 22:52:31 +0100 Subject: [PATCH] some commits --- .gitignore | 1 + scraper/scraper.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 6db3394..d2869d3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ go.mod go.sum +ytgo diff --git a/scraper/scraper.go b/scraper/scraper.go index 3673ddc..71e5730 100644 --- a/scraper/scraper.go +++ b/scraper/scraper.go @@ -122,7 +122,7 @@ func FetchVideos(query string) ([]Video, error) { // Make the search request call := youtubeService.Search.List([]string{"snippet"}). Q(query). - MaxResults(25). + MaxResults(50). Type("video"). VideoDuration("any")