From 8e3aa313ffa7b818d21f16c4f36c6b0b9adf132e Mon Sep 17 00:00:00 2001 From: Mike Nolan Date: Sun, 28 Dec 2025 15:35:51 -0600 Subject: [PATCH] Fix downloader bug, use plink and add icon to plugin template --- Tesses.YouTubeDownloader.Server/src/main.tcross | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tesses.YouTubeDownloader.Server/src/main.tcross b/Tesses.YouTubeDownloader.Server/src/main.tcross index 9135861..8b8d8b2 100644 --- a/Tesses.YouTubeDownloader.Server/src/main.tcross +++ b/Tesses.YouTubeDownloader.Server/src/main.tcross @@ -48,7 +48,7 @@ class TYTDApp { var v = ctx.QueryParams.TryGetFirst("v"); if(TypeIsString(v)) { - const video = this.TYTD.GetVideo(id); + const video = this.TYTD.GetVideo(v); if(TypeIsDefined(video)) { ctx.WithMimeType("text/html").SendText(Pages.VideoEmbed(v, video.title));