aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2021-07-03 00:07:16 +0200
committerdec05eba <dec05eba@protonmail.com>2021-07-03 00:07:16 +0200
commitd8132eeb7337b410a46fcf64ae0f6dacbe52cf33 (patch)
tree1166717e4e9d405250e5d0276af496b26438fbc5
parent5f283adc8d1a29f420d466e85b216e9d6f4a9822 (diff)
Remove invalid todo comment
-rw-r--r--src/HtmlSearch.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/HtmlSearch.c b/src/HtmlSearch.c
index 23c4736..89ee326 100644
--- a/src/HtmlSearch.c
+++ b/src/HtmlSearch.c
@@ -443,7 +443,6 @@ QuickMediaStringView quickmedia_html_node_get_text(QuickMediaMatchNode *self) {
}
/* If the only child is the text node then there is no need to create a copy of it */
- /* TODO: Strip newline and whitespace */
if(!self->node->first_child->next && !self->node->first_child->node.is_tag) {
QuickMediaStringView text = self->node->first_child->node.name;
strip(text.data, text.size, &text.data, &text.size, is_whitespace);