mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-15 02:00:20 +00:00
Fix Wikipedia URL detection - URLs inside parentheses won't work
This commit is contained in:
@@ -106,7 +106,8 @@ url_add (char *urltext, int len)
|
||||
len--;
|
||||
data[len] = 0;
|
||||
}
|
||||
if (data[len - 1] == ')') /* chop trailing ) */
|
||||
/* chop trailing ) but only if there's no counterpart */
|
||||
if (data[len - 1] == ')' && strchr (data, '(') == NULL)
|
||||
data[len - 1] = 0;
|
||||
|
||||
if (!url_tree)
|
||||
|
||||
Reference in New Issue
Block a user