commit e69bf8a5f4a5cda5863bacd509daa74ff6f5c7ee parent 7eeff59c10b2c8654594baf4f38ebeebdd8bc270 Author: libredev <libredev@ircforever.org> Date: Wed, 11 Jan 2023 18:50:23 +0530 fix parse_html_str (handle '+' symbol on url) Diffstat:
M | utils.c | | | 2 | ++ |
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/utils.c b/utils.c @@ -115,6 +115,8 @@ parse_html_str(char *str) *(y+3) = tmp; y+=3; } else { + if (*y == '+') + *y = ' '; *x++ = *y++; } }