summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--bin/title.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/title.c b/bin/title.c
index d85fa9ac..9cf444e8 100644
--- a/bin/title.c
+++ b/bin/title.c
@@ -190,7 +190,7 @@ int main(int argc, char *argv[]) {
 	char *buf = NULL;
 	size_t cap = 0;
 
-	regex_t urlRegex = regex("https?://[^[:space:]>\"]+", 0);
+	regex_t urlRegex = regex("https?://([^[:space:]>\"()]|[(][^)]*[)])+", 0);
 	while (0 < getline(&buf, &cap, stdin)) {
 		regmatch_t match = {0};
 		for (char *ptr = buf; *ptr; ptr += match.rm_eo) {