From 59ec3f6d6d3b1362cd9cadc94beb929f3718ba5c Mon Sep 17 00:00:00 2001 From: tastytea Date: Tue, 11 Jun 2019 01:24:11 +0200 Subject: [PATCH] Remove HTML from descriptions. --- src/uri.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uri.cpp b/src/uri.cpp index 7fbead3..802c369 100644 --- a/src/uri.cpp +++ b/src/uri.cpp @@ -64,7 +64,7 @@ const html_extract URI::get() return { extract_title(answer), - extract_description(answer), + strip_html(extract_description(answer)), strip_html(answer) }; }