bug fixes #10

Merged
partisan merged 5 commits from work into main 2024-08-21 11:08:32 +00:00
Showing only changes of commit 3b4b9ee83a - Show all commits

2
video.go Executable file → Normal file
View file

@ -206,7 +206,7 @@ func fetchVideoResults(query, safe, lang string, page int) []VideoResult {
Views: formatViews(item.Views),
Creator: item.UploaderName,
Publisher: "Piped",
Image: fmt.Sprintf("/img_proxy?url=%s", url.QueryEscape(item.Thumbnail)),
Image: item.Thumbnail, //fmt.Sprintf("/img_proxy?url=%s", url.QueryEscape(item.Thumbnail)), // Using image proxy is not working, but its not needed here as piped is proxy anyway
Duration: formatDuration(item.Duration),
})
}