From 8280d34cfa4b29dc0d45c25b3b66e51918ba4e5d Mon Sep 17 00:00:00 2001 From: Andrea Ascari Date: Wed, 14 Sep 2022 10:19:11 +0200 Subject: [PATCH] fix(yttrex): print html id instead html when no video is found in search parser (#644) --- platforms/yttrex/backend/parsers/searches.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platforms/yttrex/backend/parsers/searches.ts b/platforms/yttrex/backend/parsers/searches.ts index f3c886ef6..aa12a5d75 100644 --- a/platforms/yttrex/backend/parsers/searches.ts +++ b/platforms/yttrex/backend/parsers/searches.ts @@ -136,7 +136,7 @@ export const processSearch: ParserFn = async ( if (!videos.length) { debuge( "Search result of %s doesn't seem having any video!", - envelop.html.html + envelop.html.id ); return null; }