From 5f8b2bba419e838d0c1bf95c635bfc40bdd0b632 Mon Sep 17 00:00:00 2001 From: wook Date: Wed, 10 May 2017 13:50:55 +0900 Subject: [PATCH] ParseUrlAndYoutube Fixed --- HTMLParser/ParserEx.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HTMLParser/ParserEx.cs b/HTMLParser/ParserEx.cs index bc893e7..0addcc3 100644 --- a/HTMLParser/ParserEx.cs +++ b/HTMLParser/ParserEx.cs @@ -75,7 +75,7 @@ namespace HTMLParser public string ParseUrlAndYoutube(string article) { - return this.GenerateYoutubeScripts(article).First() + this.ParseYoutube(this.ParseUrl(article)); + return this.GenerateYoutubeScripts(article).First() + this.ParseUrl(article); } } }