summary refs log tree commit diff
path: root/url.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--url.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/url.c b/url.c
index 49bea65..902128a 100644
--- a/url.c
+++ b/url.c
@@ -82,5 +82,6 @@ void urlOpen(struct Tag tag, size_t at, size_t to) {
 		if (tagIndex >= at && tagIndex < to) argv[argc++] = entry.url;
 		tagIndex++;
 	}
-	if (argc > 1) eventSpawn(argv);
+	argv[argc] = NULL;
+	if (argc > 1) eventPipe(argv);
 }